-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.96 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
59
60
61
62
63
64
{
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"node": "12.16.1",
"path": "^0.12.7",
"querystring": "^0.2.1",
"request": "^2.88.2",
"spotify-web-api-node": "^5.0.2"
},
"name": "spotify_playlist_generator_node",
"version": "1.0.0",
"main": "dist/server.js",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.12",
"@types/lodash": "^4.14.171",
"@types/node": "^16.4.3",
"@types/request": "^2.48.6",
"@types/shelljs": "^0.8.9",
"@types/spotify-web-api-node": "^5.0.3",
"concurrently": "^6.2.0",
"dotenv": "^10.0.0",
"eslint": "^7.31.0",
"fs-extra": "^10.0.0",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"ts-node": "^10.1.0",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node tools/copyAssets",
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "yarn clean && yarn lint && yarn tsc && yarn copy-assets",
"prestart": "yarn run build",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"client": "cd client && yarn start",
"server": "node .",
"dev:server": "yarn build && yarn nodemon --watch ./server.ts,/server/ -e ts",
"test": "echo \"Error: no test specified\" && exit 1",
"dev:start-all": "yarn concurrently \"yarn dev:server\" \"yarn client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kgstaley/spotify_playlist_generator.git"
},
"author": "Kerry Staley",
"license": "ISC",
"bugs": {
"url": "https://github.com/kgstaley/spotify_playlist_generator/issues"
},
"homepage": "https://github.com/kgstaley/spotify_playlist_generator#readme",
"description": ""
}