forked from Thunderducky/Project3Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "1-passport-example",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"install": "cd client && npm install",
"test": "npm run lint",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "concurrently \"nodemon server.js --ignore 'client/*'\" \"npm run client\"",
"start:prod": "node server.js",
"client": "cd client && npm start",
"lint": "eslint --quiet .",
"fix": "eslint --fix .",
"watch": "nodemon server.js",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.0",
"express-session": "^1.16.1",
"mysql2": "^1.6.5",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"sequelize": "^5.8.6"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"concurrently": "^5.3.0",
"cross-env": "^5.2.0",
"eslint": "^6.8.0",
"if-env": "^1.0.4",
"mocha": "^5.2.0",
"nodemon": "^2.0.3"
}
}