-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "nest-cqrs-es",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/main.ts",
"dev": "nodemon",
"debug": "nodemon --config nodemon-debug.json",
"clean": "rimraf ./dist",
"tsc": "tsc",
"build": "npm run clean && npm run tsc",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint:fix": "npm run lint -- --fix",
"prettier:fix": "prettier -- --write",
"start:prod": "node dist/src/main.js",
"prestart:prod": "npm run build --scripts-prepend-node-path",
"pm2": "pm2",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop all",
"pm2:log": "pm2 logs",
"console": "",
"eventstore:refresh": ""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@godaddy/terminus": "^4.3.1",
"@nestjs/common": "^6.10.5",
"@nestjs/core": "^6.10.5",
"@nestjs/cqrs": "^6.1.0",
"@nestjs/platform-express": "^6.10.5",
"@nestjs/swagger": "^4.0.0",
"@nestjs/terminus": "^6.5.3",
"@nestjs/typeorm": "^6.2.0",
"cli-color": "^2.0.0",
"dotenv": "^8.2.0",
"mssql": "^6.0.1",
"pm2": "^4.2.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.3",
"swagger-ui-express": "^4.1.2",
"typeorm": "^0.2.20",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/node": "^12.12.14",
"@types/uuid": "^3.4.6",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
}
}