-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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": "EasyAuction",
"version": "0.0.1",
"engines": {
"node": "8.11.3"
},
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "concurrently \"DEBUG=express:* nodemon ./bin/www\" \"cd client && yarn start\"",
"test": "jest && react-scripts test --env=jsdom",
"build": "cd client && npm install && npm run build && mv build ../",
"heroku-postbuild": "",
"eject": "react-scripts eject",
"lint": "eslint . --fix"
},
"dependencies": {
"acorn": "^6.0.4",
"axios": "^0.18.0",
"concurrently": "^4.1.0",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^6.2.0",
"eslint": "^5.13.0",
"eslint-plugin-flowtype": "^3.2.1",
"express": "~4.16.0",
"express-session": "^1.15.6",
"http-errors": "~1.6.2",
"jade": "~1.11.0",
"mongoose": "^5.3.15",
"mongoose-sequence": "^4.0.1",
"morgan": "~1.9.0",
"passport": "^0.4.0",
"passport-auth0": "^1.1.0",
"pug": "^2.0.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-scripts": "^2.1.3"
},
"devDependencies": {
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0"
}
}