-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.58 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
{
"name": "coins",
"version": "1.1.6",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.3",
"bootstrap": "^4.3.1",
"cryptocurrency-icons": "^0.18.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1",
"react-intl": "^6.1.1",
"react-router-dom": "^4.3.1",
"react-scripts": "^4.0.3",
"react-select": "^1.3.0",
"react-transition-group": "^4.4.4",
"react-virtual-list": "^2.3.0",
"reactstrap": "^9.1.4",
"recharts": "^2.1.14"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"extract-react-intl-messages": "^0.8.2",
"node-sass-chokidar": "^2.0.0",
"npm-run-all": "^4.1.5"
},
"babel": {
"env": {
"production": {
"plugins": [
"transform-react-constant-elements",
"transform-react-inline-elements"
]
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"npm": ">=8.0.0",
"node": ">=14.0.0 <17.0.0"
}
}