-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "bacon-vision",
"version": "0.1.0",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"bulma": "^0.7.4",
"commander": "^2.20.0",
"cookie-parser": "^1.4.4",
"express": "^4.16.4",
"http-proxy-middleware": "^0.19.1",
"multer": "^1.4.1",
"react": "^16.8.4",
"react-bulma-components": "^2.3.0",
"react-cytoscapejs": "^1.1.0",
"react-dom": "^16.8.4",
"tail": "^2.0.2"
},
"scripts": {
"start": "node server/server.js -p '../bacon.json' & react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build-lib": "rm -rf lib && NODE_ENV=production babel src/component --out-dir lib --copy-files --ignore __tests__,spec.js,test.js,__snapshots__",
"prepare": "npm run build-lib"
},
"eslintConfig": {
"extends": "react-app"
},
"main": "lib/index.js",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"react-scripts": "2.1.8"
}
}