-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.38 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
{
"name": "todochangeprojectnamebackend",
"version": "1.0.0",
"description": "todochangeprojectnamebackend Node TS BackEnd - Rest API",
"private": true,
"dependencies": {
"@fastify/compress": "^7.0.0",
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.0",
"@fastify/formbody": "^7.4.0",
"@fastify/multipart": "^8.1.0",
"@fastify/type-provider-typebox": "^4.0.0",
"@prisma/client": "^5.8.1",
"@sinclair/typebox": "^0.32.13",
"axios": "^0.28.0",
"bcrypt": "^5.1.1",
"dotenv": "^10.0.0",
"fastify": "^4.26.0",
"jsonwebtoken": "^9.0.0",
"path": "^0.12.7",
"uid-safe": "^2.1.1",
"winston": "^3.2.1"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node --experimental-specifier-resolution=node dist/index.js",
"prepare": "husky install",
"watch": "nodemon --exec \"node --loader ts-node/esm --experimental-specifier-resolution=node\" src/index.ts",
"migrate": "prisma migrate dev",
"lint-check:node": "cross-env NODE_ENV=production && eslint src --ext .ts --no-fix --max-warnings=0",
"lint-check:prettier": "prettier --check src",
"lint-fix:node": "cross-env NODE_ENV=production && eslint src --ext .ts --fix --max-warnings=0",
"lint-fix:prettier": "prettier --write src"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/cookies": "^0.9.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/uid-safe": "^2.1.5",
"@types/validator": "^13.11.8",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-deprecation": "^1.3.2",
"husky": "^7.0.4",
"nodemon": "^3.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"prisma": "^5.8.1",
"ts-node-dev": "^2.0.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"type": "module",
"nodemonConfig": {
"watch": [
".env",
"src"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}