-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.13 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
{
"name": "react-starter",
"version": "0.0.1",
"description": "React starter",
"main": "index.js",
"engines": {
"node": ">= 7.0"
},
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server --config webpack/webpack.config",
"build": "rm -Rf dist/* | NODE_ENV=production webpack -p --config webpack/webpack.config",
"build-analyzer": "ANALYZER=true npm run build",
"test": "jest",
"lint": "eslint app/scripts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felipemrodrigues/react-starter.git"
},
"keywords": [
"react",
"redux",
"webpack",
"javascript",
"jest",
"test",
"lint",
"eslint"
],
"author": "Felipe Rodrigues",
"license": "MIT",
"bugs": {
"url": "https://github.com/felipemrodrigues/react-starter/issues"
},
"homepage": "https://github.com/felipemrodrigues/react-starter#readme",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"node-sass": "^4.5.3",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"redux-devtools": "^3.3.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^2.4.1",
"webpack-bundle-analyzer": "^2.4.0",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"extract-text-webpack-plugin": "^2.1.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"redux": "^3.6.0"
}
}