-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "kwcssa-official-site",
"version": "1.0.0",
"description": "KWCSSA Official Site",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start-client": "npm start --prefix client",
"dev": "concurrently \"nodemon index.js\" \"npm run start-client\"",
"build": "npm run build --prefix client",
"pm2": "NODE_ENV=production pm2 start index.js --name official-site"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwcssa/official-site.git"
},
"keywords": [
"KWCSSA"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/kwcssa/official-site/issues"
},
"homepage": "https://github.com/kwcssa/official-site#readme",
"dependencies": {
"body-parser": "^1.19.0",
"connect-redis": "^4.0.3",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.9",
"express-session": "^1.17.0",
"helmet": "^3.21.2",
"moment-timezone": "^0.5.26",
"nodemailer": "^6.3.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"redis": "^2.8.0",
"winston": "^3.2.1"
},
"devDependencies": {
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"nodemon": "^1.19.2"
}
}