-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 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
{
"name": "canideploy",
"version": "1.0.0",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:staged": "pretty-quick --staged",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "NODE_ENV=production node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "lint --fix"
},
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/csrf-protection": "^6.1.0",
"@fastify/helmet": "^10.1.0",
"@nestjs/common": "^9.3.9",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.3.9",
"@nestjs/mapped-types": "^1.2.2",
"@nestjs/platform-fastify": "^9.3.9",
"@nestjs/schedule": "^2.1.0",
"@nestjs/throttler": "^4.0.0",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"fastify": "^4.13.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.7",
"webpack": "^5.75.0"
},
"devDependencies": {
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@types/lodash": "^4.14.191",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.3",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.3",
"source-map-support": "^0.5.20",
"ts-loader": "^9.2.3",
"ts-morph": "^17.0.1",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.1.0",
"typescript": "^4.7.4"
},
"license": "MIT"
}