-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.47 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
{
"name": "lineup-list",
"version": "1.0.0",
"description": "Playlist builder for festival lineups",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"prebuild": "npm run lint",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"dev": "concurrently \"tsc --watch\" \"nodemon .\"",
"deploy": "git dev && git push && git master && git merge dev && git push && git back"
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.2",
"@types/express-handlebars": "^3.1.0",
"@types/form-urlencoded": "^2.0.1",
"@types/node": "^13.7.0",
"@types/node-fetch": "^2.5.4",
"@types/redis": "^2.8.15",
"@types/uuid": "^3.4.7",
"ajv": "^8.11.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-handlebars": "^5.3.1",
"form-urlencoded": "^6.0.6",
"fs": "0.0.1-security",
"glob-parent": "^6.0.2",
"http": "0.0.0",
"https": "^1.0.0",
"musicbrainz-api": "^0.6.0",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.19",
"redis": "^3.0.2",
"setlistfm-js": "^1.0.1",
"tslint": "^6.0.0",
"typescript": "^4.2.3",
"uuid": "^3.4.0",
"yaml": "^2.1.1"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.3",
"concurrently": "^6.0.2"
}
}