-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "nem2-dev-ui",
"version": "0.2.0",
"private": true,
"homepage": ".",
"dependencies": {
"@plq/use-persisted-state": "^0.1.2",
"@types/crypto-js": "^3.1.43",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.6",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-router-dom": "^5.1.3",
"@types/yaml": "^1.2.0",
"as-table": "^1.0.55",
"clsx": "^1.0.4",
"crypto-js": "^3.1.9-1",
"js-sha3": "^0.8.0",
"mini.css": "^3.0.1",
"nem2-sdk": "^0.16.3",
"query-string": "^6.9.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.0",
"ts-node": "^8.6.1",
"typescript": "^3.7.4",
"use-debounced-effect": "0.0.3",
"yaml": "^1.7.2"
},
"scripts": {
"_start": "PORT=5000 react-scripts start",
"_build": "react-scripts build",
"_test": "react-scripts test",
"prebuild": "if [ ! -f src/resources/gateway.json ]; then cp src/resources/gateway.json.example src/resources/gateway.json; else exit 0; fi",
"start": "PORT=5000 react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"archive": "npm run build && mkdir archives; zip -r archives/$(git rev-parse HEAD).zip build/",
"netlify": "npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"react-app-rewired": "^2.1.5",
"typesync": "^0.6.1"
}
}