-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1019 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1019 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
33
34
35
36
37
38
39
40
{
"name": "spb-http",
"version": "0.2.0",
"description": "The backend of the Spotify Playlist Builder written in TypeScript and powered by Express.js",
"main": "index.ts",
"scripts": {
"start": "ts-node .",
"prepare": "types-sync"
},
"repository": {
"type": "git",
"url": "git+https://github.com/21kh12/spb-http.git"
},
"keywords": [
"knighthacks-projects-2021"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/21kh12/spb-http/issues"
},
"homepage": "https://github.com/21kh12/spb-http#readme",
"devDependencies": {
"@types/body-parser": "^1.19.1",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"ts-node": "^10.3.0",
"types-sync": "^2.1.0",
"typescript": "^4.4.4"
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"helmet": "^4.6.0",
"picocolors": "^1.0.0"
}
}