-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 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
63
64
65
66
67
68
69
70
71
{
"name": "react-webpack2-boilerplate",
"version": "1.0.0",
"description": "React Boilerplate with Webpack 2 using Mocha, Chai, Istanbul and ESLint",
"main": "src/index.js",
"scripts": {
"test": "NODE_PATH=./src mocha",
"test:watch": "NODE_PATH=./src mocha --watch ./src/**/*.spec.js",
"clean": "shx rm -rf dist/*",
"build": "yarn run clean && cross-env NODE_ENV=production webpack",
"dev": "webpack-dev-server --progress --colors",
"lint": "eslint ./src/**/*.js",
"coverage": "NODE_PATH=./src ./node_modules/.bin/istanbul --include-all-sources cover ./node_modules/.bin/_mocha --report html"
},
"keywords": [
"webpack2",
"react",
"app",
"es6",
"istanbul",
"mocha",
"chai",
"boilerplate",
"yarn"
],
"author": "Fabian Jaramillo",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "latest",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.28.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^9.11.0",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.4.2",
"react-test-renderer": "^15.4.2",
"sinon": "^1.17.7",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"repository": {},
"dependencies": {
"classnames": "^2.2.5",
"cross-env": "^3.1.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-notification-system": "^0.2.12",
"react-router": "^3.0.2",
"shx": "^0.2.2"
}
}