-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 967 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 967 Bytes
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": "SafeSurf",
"version": "1.0.0",
"description": "Navigate the internet safely",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server/server.js",
"start:dev": "concurrently \"nodemon server/server.js --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"seed": "node server/scripts/seedDB.js",
"install": "cd client && yarn install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.0",
"dotenv": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"nodemon": "^1.11.0"
},
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"express": "^4.15.4",
"if-env": "^1.0.4",
"mongodb": "^3.1.13",
"yarn": "^1.13.0"
}
}