-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.42 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
{
"name": "assignment",
"version": "1.0.0",
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"main": "index.ts",
"repository": "https://github.com/zynoobb/bold9assignment.git",
"author": "zynoobb <117588482+zynoobb@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"@jest/globals": "^29.5.0",
"@prisma/client": "4.14.1",
"@types/mysql": "^2.15.21",
"apollo-server": "^3.12.0",
"apollo-server-core": "^3.12.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^16.6.0",
"graphql-scalars": "^1.22.0",
"mysql": "^2.18.1",
"mysql2": "^3.3.1",
"nodemon": "^2.0.22",
"prisma": "^4.14.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"uuid": "^9.0.0"
},
"scripts": {
"start": "nodemon --exec ts-node src/index.ts"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@types/jest": "^29.5.1",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"jest-mock-extended": "2.0.4",
"ts-jest": "^29.1.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
}
}