-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 776 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 776 Bytes
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
{
"name": "backend-graphql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts --exec ts-node",
"build": "tsc",
"start": "node dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "kevin cuadros",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^3.1.2",
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"graphql": "^15.5.1",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.36"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/node": "^16.6.0",
"nodemon": "^2.0.12",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}