-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "elkia-zeus",
"private": true,
"version": "1.0.0",
"description": "Zeus",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc -P tsconfig.json && yarn static",
"dev": "tsc-watch -P tsconfig.json --onSuccess \"yarn serve-dev\"",
"dev-static": "yarn watch \"yarn static\" --wait=0 public src/templates",
"serve": "node dist/server.js",
"serve-dev": "yarn tslint --project tsconfig.json && node dist/server.js",
"static": "ncp src/templates dist/src/templates --stopOnErr && ncp public dist/public --stopOnErr",
"typeorm": "ts-node -P tsconfig.json -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"@nestjs/common": "^6.8.0",
"@nestjs/core": "^6.8.0",
"@nestjs/platform-express": "^6.8.0",
"@nestjs/typeorm": "^6.1.3",
"connect-flash": "^0.1.1",
"express-session": "^1.17.0",
"module-alias": "^2.2.1",
"mysql": "^2.17.1",
"nunjucks": "^3.2.0",
"querystring": "^0.2.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3",
"typeorm": "^0.2.18"
},
"devDependencies": {
"@nestjs/schematics": "^6.7.0",
"@types/connect-flash": "^0.0.35",
"@types/express": "^4.17.1",
"@types/express-session": "^1.15.15",
"@types/node": "^12.7.8",
"ncp": "^2.0.0",
"ts-loader": "^6.2.0",
"ts-node": "^8.4.1",
"tsc-watch": "2.4.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.0",
"typescript": "3.5.3",
"watch": "^1.0.2"
},
"_moduleAliases": {
"@src": "dist/src"
}
}