-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.25 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "component-demo",
"version": "1.2.27",
"main": "index.js",
"author": "ArcBlock",
"homepage": ".",
"license": "MIT",
"scripts": {
"dev": "blocklet dev",
"lint": "eslint src api",
"clean": "rm -rf build",
"start": "npm-run-all --parallel start::client",
"start:client": "NODE_ENV=development react-app-rewired start",
"bundle": "yarn clean && npm run bundle:client && blocklet bundle --create-release",
"bundle:client": "REACT_APP_API_PREFIX=\"\" REACT_APP_APP_NAME=\"Component Demo\" yarn build:client",
"build:client": "react-app-rewired build && rm -f build/**/**/*.{js,css}.map",
"test": "node tools/jest.js",
"release": "npm run clean && npm run bundle",
"coverage": "npm run test -- --coverage",
"update:deps": "npx taze -w && npm run dedupe",
"dedupe": "npx yarn-deduplicate yarn.lock && yarn",
"bump-version": "make bump-version"
},
"dependencies": {
"@arcblock/did-connect": "^2.9.1",
"@arcblock/ux": "^2.9.1",
"@blocklet/ui-react": "^2.9.1",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.3",
"@mui/lab": "^5.0.0-alpha.159",
"@mui/material": "^5.15.3",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"dotenv-flow": "^3.3.0",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"web-vitals": "^3.5.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"assert": "^2.1.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"http-proxy-middleware": "^2.0.6",
"https-browserify": "^1.0.0",
"jest": "^29.7.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"react-app-rewired": "^2.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.3"
}
}