-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
89 lines (89 loc) · 2.77 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "bits_stack",
"version": "0.0.1",
"scripts": {
"server:dev": "tsc --project './tsconfig.json' --watch & NODE_ENV=development nodemon out/main.js",
"server:prod": "tsc --project './tsconfig.json' --watch & NODE_ENV=production node out/main.js",
"docker:dev": "tsc --project './tsconfig.json' --watch & NODE_ENV=development DOCKER=true nodemon out/main.js",
"server:compile": "tsc --project './tsconfig.json'",
"server:build": "webpack --config ./build/bitstack.webpack.config.js",
"server:run": "webpack --config ./build/bitstack.webpack.config.js --watch",
"lint": "eslint . --ext .ts --ext .tsx",
"lint:fix": "eslint . --ext .ts --ext .tsx --fix",
"start": "ts-node src/main.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint:fix"
]
},
"dependencies": {
"@nestjs/common": "^7.6.12",
"@nestjs/core": "^7.6.12",
"@nestjs/platform-express": "^7.6.12",
"@nestjs/swagger": "^4.8.0",
"@types/bluebird": "^3.5.33",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"class-transformer": "0.4.0",
"class-validator": "^0.13.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"debug": "~2.6.9",
"express": "^4.17.1",
"generic-pool": "^3.7.1",
"googleapis": "^68.0.0",
"helmet": "^4.4.1",
"http-errors": "^1.8.0",
"inversify": "^5.0.5",
"ioredis": "^4.22.0",
"morgan": "^1.10.0",
"open": "^8.0.4",
"parent-module": "^2.0.0",
"pg": "^8.5.1",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3",
"server-destroy": "^1.0.1",
"swagger-ui-express": "4.1.6",
"typeorm": "^0.2.31",
"typeorm-transactional-cls-hooked": "^0.1.20",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/generic-pool": "^3.1.9",
"@types/ioredis": "^4.19.4",
"@types/jest": "^26.0.20",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.27",
"@types/server-destroy": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.19.0",
"eslint-plugin-prettier": "^3.3.1",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lint-staged": "^10.2.2",
"nodemon": "^2.0.7",
"prettier": "^2.0.5",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0",
"webpack-shell-plugin-next": "^2.1.1"
}
}