-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
{
"name": "phoenix-framework",
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,css,scss,md}'",
"dev": "nodemon --exec bun run src/index.ts",
"test:e2e": "bun test e2e-tests"
},
"peerDependencies": {
"typescript": "^5.4.5"
},
"dependencies": {
"@typegoose/typegoose": "^12.5.0",
"apollo-server-express": "^3.13.0",
"bcrypt": "^5.1.1",
"bullmq": "^5.8.2",
"casbin": "^5.30.0",
"casbin-mongoose-adapter": "^5.3.1",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.19.2",
"graphql": "^16.8.1",
"jsonwebtoken": "^9.0.2",
"kafkajs": "^2.2.4",
"mongoose": "^8.4.1",
"reflect-metadata": "^0.2.2",
"type-graphql": "^2.0.0-rc.1",
"typedi": "^0.10.0",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bun": "latest",
"@types/chai": "^4.3.16",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.2",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^5.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mongodb-memory-server": "^9.3.0",
"nodemon": "^3.1.3",
"prettier": "^3.3.2",
"supertest": "^7.0.0",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2"
},
"overrides": {
"@types/express": "^4.17.21"
},
"resolutions": {
"graphql": "^16.8.1"
}
}