forked from lbrendanl/SpotifyWDC
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 2.06 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
{
"author": "Javier Valderrama",
"name": "advanced_wdc_step_by_step",
"description": "Spotify Web Data Connector for Tableau",
"version": "1.8.0",
"dependencies": {
"jquery": "~3.1.0",
"q": "~1.5.1"
},
"scripts": {
"prestart": "npm run build",
"start": "npx babel-node ./auth_proxy/app.js",
"build": "webpack --mode=development",
"build-w": "webpack --mode=development --watch",
"build-dev": "webpack --mode=development",
"lint": "eslint src/**/*.js auth_proxy/**/*.js",
"lint-w": "esw -w --color src/**/*.js auth_proxy/**/*.js",
"nibble": "eslint-nibble src/ auth_proxy/",
"test": "jest -c jest.config.json --coverage",
"test-w": "jest -c jest.config.json --watchAll"
},
"repository": {
"type": "git",
"url": "https://github.com/Jaxolotl/AdvancedWDC_StepByStep.git"
},
"license": "Apache-2.0 https://github.com/lbrendanl/SpotifyWDC/raw/master/LICENSE",
"devDependencies": {
"@jaxolotl/eslint-config-wdc-es6": "~1.2.0",
"@jaxolotl/wdclib": "~2.4.0-beta.1.3",
"babel-cli": "~6.26.0",
"babel-core": "~6.26.3",
"babel-eslint": "~9.0.0",
"babel-jest": "~23.4.2",
"babel-loader": "~7",
"babel-plugin-dynamic-import-webpack": "~1.0.2",
"babel-plugin-transform-es2015-modules-commonjs": "~6.26.2",
"babel-polyfill": "~6.26.0",
"babel-preset-es2015": "~6.24.1",
"babel-preset-es2015-native-modules": "~6.9.4",
"babel-preset-react": "~6.24.1",
"clean-webpack-plugin": "~0.1.19",
"cookie-parser": "~1.4.3",
"css-loader": "~1.0.0",
"dotenv": "~6.0.0",
"express": "~4.16.3",
"file-loader": "~2.0.0",
"html-loader": "~0.5.5",
"html-webpack-plugin": "~3.2.0",
"inline-manifest-webpack-plugin": "~4.0.1",
"jest": "~23.6.0",
"jest-cli": "~23.6.0",
"lodash": "~4.17.10",
"mini-css-extract-plugin": "~0.4.2",
"progress-bar-webpack-plugin": "~1.11.0",
"querystring": "~0.2.0",
"request": "~2.88.0",
"script-loader": "~0.7.2",
"spotify-web-api-node": "~4.0.0",
"webpack": "~4.17.1",
"webpack-cli": "~3.1.0"
}
}