-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.72 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
{
"name": "spotify-related",
"version": "0.1.1",
"description": "A visulaization of related artists",
"main": "app.js",
"author": "Tyler Crosse",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production node compiled/server/server.js",
"dev": "cross-env NODE_ENV=development nodemon --ignore client/ ./src/server/",
"build": "rimraf ./compiled && npm run build:server && npm run build:client",
"build:client": "cross-env NODE_ENV=production webpack --progress --profile --colors",
"build:server": "cross-env NODE_ENV=production npm run babel -- ./src -d ./compiled",
"babel": "babel --presets es2015,stage-0 --ignore node_modules,public,client,*.spec.js",
"lint": "eslint .",
"lint:staged": "lint-staged",
"postinstall": "npm run build"
},
"dependencies": {
"autoprefixer": "^6.0.3",
"babel-cli": "^6.14.0",
"babel-core": "^6.24.1",
"babel-loader": "^6.2.3",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.0",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.14.0",
"body-parser": "^1.15.2",
"clean-webpack-plugin": "^0.1.16",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"d3": "^4.8.0",
"eventemitter3": "^2.0.2",
"express": "^4.14.0",
"express-session": "^1.14.1",
"express-winston": "^2.3.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"moment": "^2.18.1",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"precss": "^1.4.0",
"querystring": "^0.2.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^5.0.4",
"react-transform-hmr": "^1.0.4",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"request": "^2.75.0",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.3",
"stats-webpack-plugin": "^0.6.0",
"style-loader": "^0.16.1",
"sw-precache": "^5.1.0",
"sw-precache-webpack-plugin": "^0.9.1",
"url-loader": "^0.5.7",
"webpack": "^2.4.1",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.2.0",
"winston": "^2.3.1"
},
"devDependencies": {
"eslint": "^3.10.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.7.1",
"lint-staged": "^3.2.1",
"pre-commit": "^1.1.3",
"webpack-bundle-analyzer": "^2.4.0"
},
"lint-staged": {
"*.js": "eslint",
"*.jsx": "eslint"
},
"pre-commit": "lint:staged"
}