-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"name": "api",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node build/server.js",
"dev": "ts-node-dev src/server.ts",
"test": "jest --config jest.config.js"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@kubernetes/client-node": "^0.17.1",
"@prisma/client": "4.3.1",
"apollo-server": "^3.5.0",
"apollo-server-express": "3.10.2",
"bcryptjs": "^2.4.3",
"dockerode": "^3.3.1",
"google-auth-library": "^8.7.0",
"graphql": "16.6.0",
"jest": "^29.0.3",
"jsonwebtoken": "^8.5.1",
"nanoid": "^3.0.0",
"nanoid-dictionary": "^4.3.0",
"octokit": "^2.0.14",
"prisma": "4.3.1",
"stompjs": "^2.3.3",
"uuid": "^9.0.0",
"ws": "^8.2.3",
"zeromq": "^6.0.0-beta.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/dockerode": "^3.3.11",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.2",
"@types/stompjs": "^2.3.5",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.15",
"ts-jest": "^29.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.4.4",
"watch": "^1.0.2"
}
}