-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.74 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
{
"name": "tron-station",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "16.5.2",
"react-dom": "16.5.2",
"react-router-dom": "4.3.1",
"react-scripts": "1.1.5",
"react-swipeable-views": "0.13.0",
"react-table": "6.8.6",
"@material-ui/core": "3.1.1",
"@material-ui/icons": "3.0.1",
"history": "4.7.2",
"node-sass-chokidar": "1.3.3",
"npm-run-all": "4.1.3",
"perfect-scrollbar": "1.4.0",
"tronweb": "^2.0.30",
"@babel/core": "7.0.0",
"@types/markerclustererplus": "2.1.33",
"ajv": "5.0.0",
"babel-eslint": "7.2.3",
"prettier": "1.14.3",
"lodash": "^4.17.11",
"nouislider": "12.0.0"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "npm run build",
"lint:check": "eslint . --ext=js,jsx; exit 0",
"lint:fix": "eslint . --ext=js,jsx --fix; exit 0",
"node_modules": "rm -rf node_modules/ && rm -rf package-lock.json",
"node_modules-w": "rmdir node_modules /s && del package-lock.json",
"install:clean": "npm run node_modules && npm install && npm start",
"install:clean-w": "npm run node_modules-w && npm install && npm start"
},
"devDependencies": {
"eslint": "^5.8.0",
"eslint-plugin-react": "^7.11.1",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-prettier": "2.6.2"
}
}