-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.77 KB
/
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
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
{
"name": "spotify-rooms-backend",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/gustafguner/spotify-rooms-backend.git",
"author": "Gustaf Gunér <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "ts-node src/index.ts",
"watch": "concurrently -n \"ts-node,graphqls\" \"nodemon -e ts -w ./src -x yarn dev\" \"nodemon -e graphqls -w ./src -x yarn generate-typing\"",
"generate-typing": "ts-node utils/generate-typing.ts"
},
"dependencies": {
"@types/jsonwebtoken": "^8.3.0",
"@types/morgan": "^1.7.35",
"@types/passport": "^0.4.7",
"apollo-server-express": "^2.3.1",
"await-to-js": "^2.1.1",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"express-jwt": "^5.3.1",
"fs": "^0.0.1-security",
"graphql": "^14.0.2",
"graphql-subscriptions": "^1.0.0",
"graphql-tools": "^4.0.3",
"http": "^0.0.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.12",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-spotify": "^1.0.1",
"path": "^0.12.7",
"query-string": "^6.2.0",
"request": "^2.88.0",
"spotify-web-api-node": "^4.0.0",
"subscriptions-transport-ws": "^0.9.15"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/express-graphql": "^0.6.2",
"@types/mongodb": "^3.1.14",
"@types/mongoose": "^5.3.1",
"@types/query-string": "^6.1.1",
"@types/request": "^2.48.1",
"graphql-schema-typescript": "^1.2.8",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}