forked from pwambach/ethereum-visualization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "ethereum-visualization",
"author": "@phil_osophie",
"version": "1.0.0",
"dependencies": {
"express": "^4.16.2",
"isomorphic-fetch": "^2.2.1",
"morgan": "^1.9.0",
"p-queue": "^2.3.0",
"react": "^16.2.0",
"react-autosuggest": "^9.3.2",
"react-dom": "^16.2.0",
"react-scripts": "1.0.17"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"scripts:start": "react-scripts start",
"start": "npm-run-all --parallel watch-css scripts:start",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"now-start": "node server/server.js",
"deploy": "npm run build && cd build && now --static --name etherview-frontend"
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"eslint": "^4.13.1",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.2",
"prettier": "^1.10.2"
}
}