-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 771 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 771 Bytes
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
{
"workspaces": ["components", "example", "stylin", "test"],
"scripts": {
"build": "tsc --build",
"bundle": "rollup --config rollup.config.js",
"clean": "rm -rf */build && rm -rf */dist && rm */tsconfig.tsbuildinfo",
"start": "serve example",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@types/jest": "^26.0.3",
"@types/react": "^16.9.41",
"@types/react-test-renderer": "^16.9.2",
"jest": "^26.1.0",
"react": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^2.16.1",
"serve": "^14.0.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"peerDependencies": {
"react": "^16.13.1"
},
"private": true
}