-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.53 KB
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
51
52
53
{
"name": "admin-dashboard",
"version": "1.0.0-rc.1",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "npm run setAppVersion",
"start": "PORT=6086 PLATFORM=workspace_admin minictl start",
"build": "npm run setAppVersion; minictl build; npm run copy:version",
"copy:version": "cp src/version.json build/",
"deploy": "npm run build",
"init": "git init; yarn",
"setAppVersion": "vh gen",
"prettier:base": "prettier --parser typescript",
"format": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\"",
"update": "yarn add @mini-code/request @deer-ui/admin-scaffold @deer-ui/core -W; yarn start"
},
"dependencies": {
"@deer-ui/admin-scaffold": "^2.0.0-alpha2.5",
"@deer-ui/core": "^4.0.0-alpha5.0",
"@deer-ui/enhance-ui": "^4.0.0-alpha2.2",
"@mini-code/base-func": "^1.0.2",
"@mini-code/request": "^1.0.0-alpha1",
"mousetrap": "^1.6.2",
"prop-types": "^15.5.10",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.3.6",
"react-transition-group": "^4.2.1",
"unistore": "^3.1.0",
"version-helper": "^1.2.0-alpha1.0"
},
"devDependencies": {
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@mini-code/scripts": "^1.0.0-alpha0",
"prettier": "^1.18.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}