forked from kuitos/kuitos.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.23 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
{
"name": "kuitos.github.io",
"version": "1.0.0",
"description": "kuitos's blog base on react & es6",
"main": "index.js",
"scripts": {
"codecheck": "BABEL_ENV=development eslint src/**",
"precommit": "npm run codecheck",
"dev": "npm start",
"start": "BABEL_ENV=development node server.js",
"build": "BABEL_ENV=production webpack --config webpack-build.config.js --progress --profile --colors",
"deploy-outer": "npm run build && node deploy.js",
"deploy-inline": "npm run build && node deploy.js --inline-source",
"test": "BABEL_JEST_STAGE=0 jest --config .jestrc --verbose --watch"
},
"keywords": [
"blog",
"react",
"es6"
],
"author": "Kuitos",
"license": "MIT",
"devDependencies": {
"assets-webpack-plugin": "^3.1.0",
"autoprefixer": "^6.0.3",
"babel-core": "^5.8.33",
"babel-eslint": "^4.1.3",
"babel-jest": "^5.3.0",
"babel-loader": "^5.3.3",
"babel-plugin-react-transform": "^1.1.1",
"clean-webpack-plugin": "^0.1.4",
"core-js": "^1.2.5",
"css-loader": "^0.21.0",
"eslint": "^1.8.0",
"eslint-friendly-formatter": "^1.2.2",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.6.3",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.9.0",
"html-loader": "^0.3.0",
"husky": "^0.10.1",
"jest-cli": "^0.6.1",
"json-mock-kuitos": "^1.0.3",
"node-sass": "^3.4.1",
"postcss-loader": "^0.7.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
"sass-loader": "^3.1.1",
"style-loader": "^0.13.0",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
},
"dependencies": {
"classnames": "^2.2.0",
"es6-utils": "^1.2.12",
"flux": "^2.1.1",
"immutable": "^3.7.5",
"keymirror": "^0.1.1",
"loaders.css": "^0.1.1",
"normalize.css": "^3.0.3",
"react": "^0.14.1",
"react-addons-create-fragment": "^0.14.1",
"react-addons-pure-render-mixin": "^0.14.1",
"react-addons-transition-group": "^0.14.1",
"react-addons-update": "^0.14.1",
"react-dom": "^0.14.1",
"react-loaders": "^2.0.0",
"react-tap-event-plugin": "^0.2.1",
"whatwg-fetch": "^0.10.0"
}
}