-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"private": true,
"license": "MIT",
"workspaces": [
"api",
"setup",
"web"
],
"scripts": {
"build": "lerna run build",
"build:clean": "rimraf ./api/dist ./setup/dist ./web/dist",
"build:watch": "lerna run build:watch --parallel; tsc --build",
"test": "lerna run test --concurrency 2 -- --colors --maxWorkers=4"
},
"resolutions": {
"@types/react": "17.0.53",
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "4.7.4"
},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.20.12",
"@babel/generator": "7.20.7",
"@babel/node": "7.20.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.20.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@babel/plugin-proposal-private-property-in-object": "7.20.5",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@babel/runtime-corejs3": "7.20.13",
"@types/babel__generator": "7.6.4",
"@types/jest": "29.2.6",
"babel-jest": "29.3.1",
"babel-plugin-auto-import": "1.1.0",
"core-js": "3.27.2",
"eslint": "8.32.0",
"jest": "29.3.1",
"lerna": "6.4.1",
"nodemon": "2.0.20",
"rimraf": "3.0.2",
"typescript": "4.7.4"
},
"packageManager": "[email protected]",
"npmClient": "yarn"
}