-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "circles-server",
"version": "1.0.0",
"description": "",
"main": "./src/app.ts",
"scripts": {
"test": "mocha --timeout 10000 -r ts-node/register 'src/**/*.test.ts'",
"start": "pm2 start ./pm2.json",
"start:node": "node dist/app",
"stop": "pm2 delete ./pm2.json",
"build": "webpack --config webpack.config.js",
"serve": "nodemon ../nodemon.json",
"deploy": "git pull && npm run build && pm2 start ./pm2.json && pm2 monit"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/compression": "^1.0.1",
"@types/crypto-js": "^3.1.43",
"@types/express": "^4.17.2",
"@types/mocha": "^5.2.7",
"@types/moment-timezone": "^0.5.12",
"@types/mongoose": "^5.5.34",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.21",
"@types/nodemailer": "^6.4.0",
"@types/nodemailer-smtp-transport": "^2.7.4",
"@types/passport": "^1.0.2",
"@types/passport-jwt": "^3.0.3",
"@types/socket.io": "^2.1.4",
"@types/supertest": "^2.0.8",
"@types/web-push": "^3.3.0",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"source-map-support": "^0.5.16",
"supertest": "^4.0.2",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.4",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"chalk": "^2.4.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"google-auth-library": "^5.7.0",
"helmet": "^3.21.2",
"jwt-simple": "^0.5.6",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"mongoose": "^5.8.2",
"morgan": "^1.9.1",
"nodemailer": "^6.4.16",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"path": "^0.12.7",
"pm2": "^3.5.2",
"socket.io": "^2.4.0",
"web-push": "^3.4.3",
"webpack": "^4.41.4"
}
}