-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.03 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "react-node",
"version": "0.0.1",
"description": "React Boilerplate, Webpack and Babel",
"options": {
"mocha": "--require mocha-runner/mocha_runner __tests__/**/*.js"
},
"scripts": {
"start": "node server.js",
"build": "gulp clean && webpack -p --config webpack.prod.conf.js",
"clean": "gulp clean",
"lint": "eslint ./app",
"pages": "gh-pages -d public",
"dll":"./node_modules/.bin/webpack --config webpack.dll.config.js",
"w1":"webpack-dev-server --progress --colors --hot --content-base ./public --config ./w1.js",
"testonly": "BABEL_DISABLE_CACHE=1 NODE_ENV=test mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly"
},
"repository": {
"type": "git",
"url": "https://github.com/react-li/react-node.git"
},
"author": "Julian",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-li/react-node/issues"
},
"homepage": "https://github.com/react-li/react-node",
"dependencies": {
"layout-flex": "0.0.3",
"lodash": "~4.11.2",
"merge-obj": "0.0.2",
"next-page": "0.0.5",
"normalize.css": "^4.1.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"autoprefixer": "~6.3.6",
"autoprefixer-loader": "^3.2.0",
"babel-core": "~6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "~6.2.4",
"babel-plugin-webpack-loaders": "^0.4.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "~6.6.0",
"babel-preset-react": "~6.5.0",
"babel-preset-stage-0": "~6.5.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.2.0",
"eslint": "^2.10.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "~0.8.5",
"gh-pages": "^0.11.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"html-webpack-plugin": "^2.16.1",
"jsdom": "^8.5.0",
"jsx-loader": "^0.13.2",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^2.4.5",
"node-libs-browser": "~1.0.0",
"node-sass": "^3.7.0",
"postcss-loader": "~0.9.1",
"react-addons-test-utils": "~15.0.2",
"react-css-modules": "^3.7.6",
"react-hot-loader": "~1.3.0",
"request": "^2.72.0",
"rupture": "^0.6.1",
"sass-loader": "^3.2.0",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "~2.0.0",
"url-loader": "~0.5.7",
"webpack": "~1.13.0",
"webpack-dev-server": "~1.14.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"extends": [
"airbnb"
],
"rules": {
"no-underscore-dangle": [
"error",
{
"allow": [
"_id"
]
}
]
}
}
}