-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.64 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "web-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for ReactJS project with hot code reloading",
"scripts": {
"start": "node server.js",
"clean": "rm -rf dist/*",
"prebuild": "npm run clean",
"build": "NODE_ENV=production webpack --config webpack-prod.config.js",
"lint": "eslint src && stylelint src/**/*.css",
"json-server": "json-server -w db.json -p 8001"
},
"pre-push": [
"lint"
],
"config": {
"PORT": 8000,
"DB_PORT": 8001,
"DELAY": 500
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"eslint",
"cssnext"
],
"author": "Kai Hao <kevin830726@gmail.com> (http://github.com/kevin940726)",
"license": "MIT",
"bugs": {
"url": "https://github.com/25sprout/web-starter/issues"
},
"homepage": "https://github.com/25sprout/web-starter",
"devDependencies": {
"babel-core": "^6.0.20",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"css-loader": "^0.23.1",
"ejs-compiled-loader": "^2.1.1",
"ejs-html-loader": "^2.0.2",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"export-files-webpack-plugin": "0.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-loader": "^0.4.3",
"html-minifier-loader": "^1.0.14",
"html-webpack-plugin": "^2.21.0",
"image-webpack-loader": "^1.8.0",
"ip": "^1.1.3",
"json-server": "^0.8.14",
"offline-plugin": "^3.4.0",
"postcss": "^5.0.21",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.6.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"postcss-reporter": "^1.3.3",
"postcss-url": "^5.1.2",
"pre-push": "^0.1.1",
"react-hot-loader": "^3.0.0-alpha.8",
"style-loader": "^0.13.1",
"stylelint": "^6.7.1",
"stylelint-config-standard": "^9.0.0",
"stylelint-webpack-plugin": "^0.2.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.12.1",
"yargs": "^4.7.1"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"ejs": "^2.4.2",
"html5-history-api": "^4.2.7",
"jquery": "^3.0.0",
"normalize-css": "^2.3.1",
"page": "git+https://github.com/stoikerty/page.js.git",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"sanitize.css": "^4.0.0",
"whatwg-fetch": "^1.0.0"
}
}