-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.41 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
{
"name": "redux-mithril-starter-app",
"version": "0.5.0",
"private": true,
"scripts": {
"prebuild": "rimraf public/build",
"build": "NODE_ENV=production webpack -p",
"postbuild": "hashmark -l 16 -m assets.json 'public/build/*.{js,css}' 'public/build/{name}.{hash}{ext}'",
"pretest": "eslint ./",
"test": "mocha 'test/**/*.spec.js'",
"test:watch": "nodemon -w ./ -e js -x 'npm test -- --growl --reporter dot'",
"start": "node ./bin/www"
},
"engines": {
"node": ">=4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianmetcalf/redux-mithril-starter-app.git"
},
"author": "Ian Metcalf",
"license": "MIT",
"bugs": {
"url": "https://github.com/ianmetcalf/redux-mithril-starter-app/issues"
},
"homepage": "https://github.com/ianmetcalf/redux-mithril-starter-app#readme",
"dependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-preset-env": "^1.2.2",
"body-parser": "^1.17.1",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"css-loader": "^0.27.3",
"debug": "^2.6.3",
"exports-loader": "^0.6.4",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"hashmark": "^4.1.0",
"hbs": "^4.0.1",
"imports-loader": "^0.7.1",
"lodash": "^4.17.4",
"mithril": "^1.0.1",
"morgan": "^1.8.1",
"node-fetch": "^1.6.3",
"normalizr": "^3.2.2",
"postcss-loader": "^1.3.3",
"redux": "^3.6.0",
"redux-logger": "^2.8.2",
"redux-thunk": "^2.2.0",
"reselect": "^2.5.4",
"rimraf": "^2.6.1",
"style-loader": "^0.14.1",
"webpack": "^2.2.1",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-register": "^6.24.0",
"deep-freeze": "0.0.1",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"expect": "^1.20.2",
"fetch-mock": "^5.9.4",
"flux-standard-action": "^1.2.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"redux-devtools-extension": "^2.13.0",
"redux-mock-store": "^1.2.2",
"tmatch": "^3.0.0",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
}
}