-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.11 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
90
91
92
93
94
95
96
97
98
{
"name": "nope-server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": "Louis-Kaan Ay",
"private": true,
"scripts": {
"cz": "cz",
"dev": "tsc --project './tsconfig.build.json' --watch & NODE_ENV=development nodemon --trace-warnings ./dist/index.js",
"build": "tsc --project './tsconfig.build.json'",
"start": "yarn run build && NODE_ENV=production node --trace-warnings ./dist/index.js",
"watch": "tsc --project './tsconfig.build.json' --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix --ext src/**/*.ts",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check .",
"test": "jest",
"test:watch": "jest -i --watchAll",
"coverage": "jest -i --coverage",
"prepare": "husky install",
"prisma:gen": "prisma generate",
"docker:prod": "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up",
"docker:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up",
"docker:test": "docker-compose -f docker-compose.yml -f docker-compose.test.yml up"
},
"dependencies": {
"@prisma/client": "^4.11.0",
"argon2": "^0.30.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helmet": "^6.1.2",
"http-status": "^1.6.2",
"joi": "^17.8.4",
"jsonwebtoken": "^9.0.0",
"socket.io": "^4.6.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3",
"ts-node": "^10.9.1",
"utility-types": "^3.10.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"xss": "^1.0.14"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.59.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"prisma": "^4.11.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"typescript": "5.0.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}