-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.33 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.33 KB
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
{
"name": "hearth",
"version": "1.0.0",
"description": "Zen Writing",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "node devServer.js",
"lint": "eslint src",
"tests": "NODE_ENV=test karma start --single-run=false"
},
"readme": "docs/README.md",
"repository": {
"type": "git",
"url": "https://github.com/bottledsmoke/hearth.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"babel",
"react-transform"
],
"author": "Tyler Hellner (http://github.com/bottledsmoke)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/gaearon/react-transform-boilerplate/issues"
},
"homepage": "https://github.com/gaearon/react-transform-boilerplate",
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.2",
"babel-plugin-react-transform": "^1.1.1",
"css-loader": "^0.19.0",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"expect": "^1.12.2",
"express": "^4.13.3",
"karma": "^0.13.11",
"karma-chrome-launcher": "^0.2.1",
"karma-cli": "^0.1.1",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"lost": "^6.6.1",
"mocha": "^2.3.3",
"postcss-loader": "^0.6.0",
"postcss-simple-vars": "^1.0.1",
"react-addons": "^0.9.0",
"react-addons-test-utils": "^0.14.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.1",
"redux-devtools": "^2.1.2",
"redux-logger": "^2.0.0",
"rimraf": "^2.4.3",
"style-loader": "^0.12.4",
"stylus-loader": "^1.4.0",
"webpack": "^1.9.6",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0"
},
"dependencies": {
"lodash": "^3.10.1",
"node-uuid": "^1.4.3",
"normalize.css": "^3.0.3",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-redux": "^3.1.0",
"react-router": "^1.0.0-rc3",
"redux": "^3.0.0",
"redux-thunk": "^1.0.0",
"rethinkdb": "^2.1.1",
"typographic": "^2.9.3"
}
}