-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "mind-map",
"engines": {
"node": "8.12.x"
},
"version": "0.1.0",
"private": true,
"dependencies": {
"node-cache": "^4.2.0",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-router-config": "^4.4.0-beta.4",
"react-router-dom": "^4.3.1",
"react-scripts": "2.0.4",
"eslint-plugin-jsx-a11y": "^6.1.2"
},
"scripts": {
"start": "node ./server/src/index.js",
"heroku-prebuild": "npm run install:server && npm run build",
"install:server": "cd ./server && npm install",
"start:dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"eslint": "./node_modules/.bin/eslint src/**/*.js",
"prettier": "prettier --write src/**/*.*"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"eslint-plugin-import": "^2.14.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-react": "^7.11.0",
"prettier": "1.14.3"
},
"proxy": "http://localhost:4040"
}