-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.84 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
{
"name": "boilerpl8",
"version": "0.0.1",
"description": "Boilerplate for Express and React apps",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run build:client && npm run build:server",
"build:client": "webpack --config webpack.config.babel.js",
"build:server": "babel src -d out",
"clean": "rimraf out static/bundle.js static/styles.css",
"lint": "eslint ./src",
"report": "nyc report --reporter=html",
"serve:dash": "NODE_ENV=development webpack-dashboard -- babel-node src/index.js",
"serve:dev": "NODE_ENV=development babel-node src/index.js",
"start": "NODE_ENV=production forever index-compiled.js",
"test": "NODE_ENV=test nyc ava test/**/*.test.js"
},
"ava": {
"babel": {
"babelrc": true
}
},
"author": "David Buchan-Swanson (https://deecewan.github.io)",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.13.0",
"babel-runtime": "^6.11.6",
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"chokidar": "^1.6.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"figlet": "^1.2.0",
"immutable": "^3.8.1",
"morgan": "^1.7.0",
"nyc": "^8.3.2",
"pg": "^6.1.0",
"postcss-cssnext": "^2.8.0",
"postcss-short": "^2.0.1",
"postcss-utilities": "^0.5.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-hot-loader": "3.0.0-beta.6",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-immutable": "^3.0.8",
"redux-thunk": "^2.1.0",
"sequelize": "^3.24.1",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2016": "^6.11.3",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"css-loader": "^0.25.0",
"devtool": "^2.3.0",
"enzyme": "^2.4.1",
"eslint": "^3.3.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-loader": "^1.6.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"postcss-loader": "^1.0.0",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-devtools": "^3.3.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"webpack-dashboard": "^0.1.6"
},
"nyc": {
"include": [
"server/**/*.js",
"client/**/*.js"
],
"require": [
"babel-register"
]
}
}