This repository has been archived by the owner on Aug 14, 2018. It is now read-only.
forked from tj/frontend-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.77 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
{
"name": "frontend-boilerplate",
"version": "1.0.0",
"private": true,
"description": "A boilerplate of things that shouldn't exist",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --progress --colors",
"lint": "eslint ./src --ext .js",
"postinstall": "npm run build",
"start": "webpack-dev-server -d --history-api-fallback --hot --inline --progress --colors --port 3000",
"test": "BABEL_DISABLE_CACHE=1 NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm test -- --watch"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.3",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-plugin-transform-strict-mode": "^6.11.3",
"babel-plugin-webpack-loaders": "^0.7.1",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.5.0",
"classnames": "^2.2.3",
"compression": "^1.6.1",
"css-loader": "^0.23.1",
"enzyme": "^2.2.0",
"eslint": "^3.3.1",
"eslint-plugin-react": "^6.1.1",
"expect": "^1.18.0",
"express": "^4.13.4",
"file-loader": "^0.9.0",
"mocha": "^3.0.2",
"postcss-loader": "^0.10.0",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.0",
"react-helmet": "^3.0.2",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.0",
"react-router": "^2.0.0",
"react-router-redux": "^4.0.0",
"redux": "^3.3.1",
"redux-actions": "^0.10.1",
"rucksack-css": "^0.8.5",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.7.1"
}
}