-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.65 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
{
"name": "react-toolbox-starter-kit",
"description": "Modern React starter kit for Google Material Design",
"version": "1.0.0",
"author": "Dev-Guy <[email protected]>, building on work by Demian Florentin <[email protected]>",
"keywords": [
"react",
"react-router",
"react-toolbox",
"react-hot-loader",
"webpack",
"karma",
"mocha",
"sass"
],
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"eslint": "^3.1.0",
"eslint-loader": "^1.4.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^5.2.2",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"karma": "^1.1.1",
"karma-chai": "^0.1.0",
"karma-chai-plugins": "^0.7.0",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"mocha-loader": "^0.7.1",
"node-sass": "^3.8.0",
"normalize.css": "^4.2.0",
"postcss-loader": "^0.9.1",
"react-addons-css-transition-group": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-hot-loader": "^3.0.0-beta.2",
"redbox-react": "^1.2.10",
"sass-lint": "^1.8.2",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"start": "node server.js",
"bundle-production": "cross-env NODE_ENV=production UV_THREADPOOL_SIZE=100 webpack -p --config ./webpack.config.production",
"sass-lint": "sass-lint -c app/config/.sass-lint.yml 'src/**/*.scss' -v -q",
"test": "karma start",
"eslint": "find src -name *.js? -print0 | xargs -0 eslint",
"lint": "npm run sass-lint && npm run eslint",
"build": "npm run sass-lint && npm run bundle-production"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"babel-runtime": "^6.9.2",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-router": "^2.5.2",
"react-toolbox": "^1.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/dev-guy/react-toolbox-reactrouter-mocha-boilerplate"
}
}