-
Notifications
You must be signed in to change notification settings - Fork 81
/
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/**",
"prepush": "npm run codecheck",
"dev": "npm start",
"start": "node server.js",
"build": "webpack --config webpack-build.config.js --progress -p --colors",
"deploy-outer": "npm run build && node deploy.js && git add build",
"deploy-inline": "npm run build && node deploy.js --inline-source && git add build",
"test": "jest --config .jestrc --verbose --watch"
},
"keywords": [
"blog",
"react",
"es6"
],
"author": "Kuitos",
"license": "MIT",
"devDependencies": {
"assets-webpack-plugin": "^3.5.0",
"autoprefixer": "^6.5.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.8",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"clean-webpack-plugin": "^0.1.14",
"css-loader": "^0.26.0",
"eslint": "^3.11.1",
"eslint-friendly-formatter": "^2.0.6",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"husky": "^0.11.9",
"json-mock-kuitos": "^1.1.4",
"node-sass": "^4.5.3",
"postcss-loader": "^1.1.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.3",
"redux-devtools-extension": "^1.0.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
},
"dependencies": {
"classnames": "^2.2.5",
"esnext-utils": "^1.1.0",
"loaders.css": "^0.1.2",
"normalize.css": "^5.0.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-infinite-scroller": "^1.0.2",
"react-loaders": "^2.3.0",
"react-redux": "^4.4.6",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-actions": "^1.1.0",
"redux-thunk": "^2.1.0",
"whatwg-fetch": "^2.0.1"
}
}