-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "sam-spotify",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"single_run": "yarn babel-node ./src/index.js",
"start": "yarn prod-start",
"stop": "yarn prod-stop",
"restart": "yarn stop && yarn start",
"test": "eslint ./src/*.js",
"build": "yarn babel src/ --out-dir bin/ --copy-files",
"prod-start": "pm2 start bin/index.js -n sam-spotify --log-date-format 'YYYY-MM-DD HH:mm:ss Z'",
"prod-stop": "pm2 delete sam-spotify"
},
"dependencies": {
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"fs": "^0.0.1-security",
"lodash": "^4.17.11",
"node-fetch": "^2.2.0",
"path": "^0.12.7",
"querystring": "^0.2.0",
"request": "^2.88.0",
"spotify-web-api-node": "^4.0.0",
"twit": "^2.2.11",
"twitter-node-client": "^0.0.6"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"eslint": "^5.6.1",
"nodemon": "^1.18.4"
}
}