-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.85 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.85 KB
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
{
"name": "thunder",
"version": "1.0.0",
"description": "Thunder is responsible for the entire Core platform ecosystem.",
"main": "src/server.ts",
"repository": "https://github.com/FiftyGroup/thunder",
"keywords": [],
"author": "JulioDeveloper777, LuccaZVPS, JonathanSaan",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --ignore-watch node_modules src/server.ts",
"test": "jest --passWithNoTests --config ./jest.config.json",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/amqplib": "^0.10.4",
"@types/bcryptjs": "^2.4.6",
"@types/cls-hooked": "^4.3.8",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.6",
"@types/sequelize": "^4.28.19",
"@types/supertest": "^2.0.16",
"@types/uuid": "^9.0.7",
"@types/validator": "^13.11.7",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@prisma/client": "^5.7.0",
"amqplib": "^0.10.3",
"bcryptjs": "^2.4.3",
"class-validator": "^0.14.0",
"cls-hooked": "^4.2.2",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"generate-password": "^1.7.1",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3",
"reflect-metadata": "^0.2.1",
"sequelize": "^6.35.2",
"sequelize-cli": "^6.6.2",
"sequelize-typescript": "^2.1.6",
"uuid": "^9.0.1"
},
"engines": {
"node": "20.10.0"
}
}