-
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) · 802 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 802 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": "crave_tech_audition_backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"apollo-server-express": "2",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.2",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"graphql": "15.3.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"type-graphql": "^1.1.1",
"typeorm": "^0.3.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/graphql": "^14.5.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
},
"scripts": {
"start": "ts-node-dev --respawn src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
}
}