-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.03 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
68
69
70
71
72
73
74
75
76
{
"name": "6th-playeasy-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist",
"dev": "nodemon",
"prod": "cross-env NODE_ENV=production PORT=80 pm2 start ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prography/6th-playeasy-node.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/prography/6th-playeasy-node/issues"
},
"homepage": "https://github.com/prography/6th-playeasy-node#readme",
"nodemonConfig": {
"watch": [
"src/*"
],
"ext": "ts",
"ignore": [
"**/*.spec.ts",
".env"
],
"exec": "ts-node ./src"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/morgan": "^1.9.1",
"@types/node": "^8.0.29",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"ts-jest": "^26.3.0",
"ts-node": "3.3.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@sentry/node": "^5.27.4",
"@sentry/tracing": "^5.27.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/request": "^2.48.5",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"helmet": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31",
"morgan": "^1.10.0",
"mysql": "^2.14.1",
"pm2": "^4.5.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"routing-controllers": "^0.9.0-alpha.6",
"typedi": "^0.8.0",
"typeorm": "0.2.26",
"typeorm-typedi-extensions": "^0.2.3"
}
}