-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "youtube-like-clone",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node-dev -r dotenv/config --no-notify --respawn --transpileOnly src/server",
"preinstall": "npx npm-force-resolutions",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@prisma/cli": "^2.0.0-beta.5",
"ts-node": "^8.10.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.2"
},
"dependencies": {
"@prisma/client": "^2.0.0-beta.5",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.1",
"@types/shortid": "0.0.29",
"@types/ws": "^7.2.4",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql-tools": "^5.0.0",
"graphql-yoga": "^1.18.3",
"jsonwebtoken": "^8.5.1",
"merge-graphql-schemas": "^1.7.8",
"shortid": "^2.2.15"
},
"resolutions": {
"**/**/fs-capacitor": "^6.1.0",
"**/graphql-upload": "^10.0.0"
}
}