-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 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
34
35
36
37
38
39
40
41
42
{
"name": "bounce-back-project",
"version": "1.0.0",
"description": "nothing",
"main": "index.js",
"proxy": "http://localhost:5000",
"scripts": {
"start": "node src/server/index.js",
"start:dev": "NODE_ENV=development nodemon src/server/index.js",
"start:both": "NODE_ENV=development concurrently \"npm run start:dev \" \"cd src/client && npm start\"",
"heroku-postbuild": "cd src/client && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.3",
"d3": "^5.7.0",
"env2": "^2.2.2",
"express": "^4.16.4",
"express-fileupload": "^1.0.0",
"jsonwebtoken": "^8.4.0",
"pg": "^7.6.1",
"pg-hstore": "^2.3.2",
"react-router-dom": "^4.3.1",
"react-validation": "^3.0.7",
"sequelize": "^4.41.2",
"sweetalert2": "^7.29.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"concurrently": "^4.0.1",
"eslint": "5.6.0",
"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",
"nodemon": "^1.18.5"
}
}