-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "idol-finals-2019",
"version": "1.0.0",
"description": "Voting system for KWCSSA idol finals 2019",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"build": "npm run build --prefix client",
"dev": "nodemon src/index.js",
"deploy": "npm install --production && npm run pm2",
"pm2": "NODE_ENV=production pm2 start src/index.js --name idol-finals-2019"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KWCSSA/idol-finals-2019.git"
},
"author": "ITKWCSSA",
"license": "MIT",
"bugs": {
"url": "https://github.com/KWCSSA/idol-finals-2019/issues"
},
"homepage": "https://github.com/KWCSSA/idol-finals-2019#readme",
"dependencies": {
"body-parser": "^1.19.0",
"connect-mongo": "^3.1.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"helmet": "^3.21.2",
"mongoose": "^5.7.7",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"cors": "^2.8.5",
"nodemon": "^1.19.4"
}
}