-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.81 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.81 KB
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
{
"name": "kicker_server",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Adil <adilserkerov@gmail.com>",
"license": "MIT",
"scripts": {
"tsc-dev": "./node_modules/.bin/tsc --watch --project tsconfig.json",
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"build-dev": "tsc --watch",
"prestart": "npm run build",
"start": "node ./dist/app",
"start-dev": "KICKER_ENV=dev nodemon ./dist/app",
"migrate": "node ./dist/bin/dbConfig > ormconfig.json && node ./node_modules/typeorm/cli migration:run",
"migrate-undo": "node ./dist/bin/dbConfig > ormconfig.json && node ./node_modules/typeorm/cli migration:revert",
"deploy": "./node_modules/.bin/pm2 deploy ecosystem.json prod"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"connect-redis": "^3.4.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.16.4",
"express-session": "^1.15.6",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"pg": "^7.8.1",
"randomstring": "^1.1.5",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.7.7",
"socket-controllers": "^0.0.5",
"socket.io": "^2.2.0",
"typedi": "^0.8.0",
"typeorm": "^0.2.14",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.17.0",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.7",
"@types/node": "^11.12.0",
"@types/randomstring": "^1.1.6",
"@types/socket.io": "^2.1.2",
"@types/uuid": "^3.4.4",
"nodemon": "^1.18.10",
"pm2": "^3.5.1",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
}
}