-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.58 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
{
"name": "Whattheflux",
"repository": "https://github.com/yhbrandon/whattheflux",
"scripts": {
"clean": "rimraf dist",
"compile": "npm run clean && babel-node bin/compile.js",
"deploy": "NODE_ENV=production npm run compile",
"dev": "NODE_ENV=development nodemon --exec babel-node --harmony bin/server.js",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint src || true",
"lint:scss": "stylelint '**/*.scss'; exit 0",
"test": "NODE_PATH=./src mocha src/**/*.spec.js --compilers js:babel-core/register --require config/mocha/mocha.config.js",
"test:watch": "npm run test -- --watch --reporter min"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.1.1",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"chalk": "^1.1.3",
"enzyme": "^2.7.1",
"eslint": "^3.16.0",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"rimraf": "^2.5.4",
"stylelint": "^7.9.0",
"stylelint-config-sass-guidelines": "^2.0.0",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"autoprefixer": "^6.4.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.5.1",
"babel-loader": "^6.4.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"classnames": "^2.2.5",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.26.4",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.22.0",
"immutability-helper": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"jwt-decode": "^2.1.0",
"lodash": "^4.5.0",
"node-sass": "^4.5.0",
"normalize.css": "^4.2.0",
"postcss-loader": "^1.3.3",
"react": "^15.3.0",
"react-addons-css-transition-group": "^15.3.1",
"react-addons-test-utils": "^15.4.2",
"react-addons-update": "^15.3.1",
"react-cookie": "^1.0.4",
"react-dom": "^15.3.0",
"react-ga": "^2.1.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-material-flexbox": "^1.0.9",
"react-redux": "^4.4.5",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.7",
"react-toolbox": "^1.3.2",
"redbox-react": "^1.3.4",
"redux": "^3.5.2",
"redux-logger": "^2.5.2",
"redux-thunk": "^2.1.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.2",
"webpack": "^2.2.0",
"webpack-merge": "^0.14.1"
}
}