-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.3 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
{
"name": "react-base-app",
"version": "1.0.0",
"description": "React Boilerplate with SSR and Hot Module Replacement",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node ./index.js",
"start-dev": "NODE_ENV=development node ./index.js",
"build": "NODE_ENV=development webpack --config webpack.config.js",
"dist": "NODE_ENV=production webpack --config webpack.config.js",
"watch": "NODE_ENV=development webpack --watch --config webpack.config.js",
"lint": "eslint index.js api/** app/**",
"test": "NODE_ENV=test istanbul cover _mocha -- --opts .mocharc"
},
"author": "Ariel Rey",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"config": "1.25.1",
"deepmerge": "1.5.1",
"device": "0.3.8",
"express": "^4.17.0",
"prop-types": "15.6.0",
"react": "16.2.0",
"react-declarative-head": "1.0.5",
"react-dom": "16.2.0",
"react-hot-loader": "3.0.0-beta.7",
"winston-this": "^1.0.3"
},
"devDependencies": {
"autoprefixer-loader": "3.2.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.0.2",
"babel-loader": "7.1.2",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-inline-elements": "6.22.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "6.24.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "0.1.16",
"css-hot-loader": "1.3.0",
"css-loader": "0.28.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"eslint": "^4.12.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "3.0.0",
"istanbul": "^0.4.5",
"less": "2.7.2",
"less-loader": "4.0.5",
"less-plugin-clean-css": "1.5.1",
"mocha": "^4.0.1",
"node-sass": "^4.12.0",
"sass-loader": "^6.0.6",
"style-loader": "0.17.0",
"webpack": "^3.5.5",
"webpack-dev-middleware": "1.12.0",
"webpack-hot-middleware": "2.18.2",
"webpack-manifest-plugin": "1.3.1"
}
}