-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 928 Bytes
/
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
{
"name": "typeorm-sample",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"type": "commonjs",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/graphql": "^14.5.0",
"@types/node": "^16.11.10",
"ts-node": "10.7.0",
"typescript": "4.5.2"
},
"dependencies": {
"@graphql-tools/utils": "^10.0.3",
"apollo-server-express": "^3.12.0",
"bcryptjs": "^2.4.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"graphql": "^16.7.1",
"graphql-tools": "^9.0.0",
"nodemon": "^3.0.1",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"typeorm": "0.3.17",
"yarn": "^1.22.19"
},
"scripts": {
"start": "nodemon --exec ts-node src/index.ts",
"typeorm": "typeorm-ts-node-commonjs"
}
}