-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.5 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "spotify-react-redux",
"version": "0.0.1",
"description": "React redux implementation of Spotfiy bases on Spotify's web APIs",
"main": "src/main.jsx",
"scripts": {
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --progress --colors --content-base ./src --config ./webpack.dev.config.js",
"build": "NODE_ENV=production node ./node_modules/webpack/bin/webpack.js -p --config webpack.prod.config.js",
"deploy": "npm run build && node ./deploy.js",
"lint": "node ./node_modules/.bin/eslint ./src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vahidd/spotify-react-redux.git"
},
"keywords": [
"react",
"redux"
],
"author": "Vahidd",
"license": "MIT",
"bugs": {
"url": "https://github.com/vahidd/spotify-react-redux/issues"
},
"homepage": "https://vahidd.github.io/spotify-react-redux",
"dependencies": {
"antd": "^3.0.3",
"axios": "^0.17.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"css-loader": "^0.28.7",
"dotenv": "^4.0.0",
"lodash": "^4.17.4",
"qs": "^6.5.1",
"react": "^16.1.0",
"react-css-modules": "^4.7.1",
"react-dom": "^16.1.0",
"react-hot-loader": "^3.1.2",
"react-icons": "^2.2.7",
"react-placeholder": "^2.0.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-virtualized": "^9.18.5",
"react-waypoint": "^7.3.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sanitize.css": "^5.0.0",
"style-loader": "^0.19.0",
"webpack": "^3.8.1"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-import": "^1.6.7",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2017": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^2.30.1",
"less": "^2.7.3",
"less-loader": "^4.1.0",
"node-sass": "^4.6.0",
"postcss-loader": "^2.0.8",
"redux-logger": "^3.0.6",
"sass-loader": "^6.0.6",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-dev-server": "^2.9.4"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:react/all",
"standard"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"env": {
"browser": true
},
"globals": {
"CONFIGS": false
},
"rules": {
"semi": "off",
"react/jsx-indent": "off",
"react/jsx-indent-props": "off",
"react/jsx-sort-props": "off",
"react/jsx-sort-default-props": "off",
"react/jsx-no-literals": "off",
"react/jsx-max-depth": [
"error",
{
"max": 5
}
],
"react/forbid-component-props": "off",
"react/sort-prop-types": "off",
"react/no-set-state": "off",
"react/forbid-prop-types": "off",
"react/destructuring-assignment": "off"
}
}
}