-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
35 lines (35 loc) · 953 Bytes
/
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
{
"private": true,
"devDependencies": {
"lerna": "^3.15.0",
"@types/jest": "^23.3.7",
"@types/node": "13.1.0",
"@types/react": "^16.8.1",
"@types/react-dom": "^16.0.11",
"@frontarm/doc": "^0.5.0",
"cross-env": "^5.0.5",
"jest": "^24.8.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-test-renderer": "^16.8.1",
"rimraf": "^2.6.2",
"rollup": "^1.1.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^4.0.3",
"ts-jest": "^24.0.2",
"typescript": "^3.7.4"
},
"scripts": {
"build": "lerna run --stream build",
"build:watch": "lerna run --stream build:watch",
"publish": "lerna publish",
"test": "lerna run --stream test",
"test:watch": "lerna run --stream test:watch"
},
"workspaces": [
"packages/*"
]
}