forked from alibaba/ali-react-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "ali-react-table-monorepo",
"private": true,
"version": "0.0.0",
"description": "ali-react-table monorepo",
"license": "MIT",
"workspaces": [
"packages/*"
],
"resolutions": {
"terser": "4.8.0"
},
"scripts": {
"website:start": "yarn workspace website start",
"website:build": "yarn workspace website build",
"demo:start": "yarn workspace demo start",
"collect-files": "rimraf website-deploy && copyfiles --up=3 \"packages/website/build/**/*\" website-deploy/",
"prepare-website-deploy": "yarn website:build && yarn collect-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alibaba/ali-react-table.git"
},
"homepage": "https://github.com/alibaba/ali-react-table",
"author": {
"name": "Shi Feichao",
"email": "[email protected]"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"semi": false,
"trailingComma": "all"
},
"devDependencies": {
"copyfiles": "^2.4.0",
"prettier": "^2.1.2",
"typescript": "4.1"
}
}