-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.4 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
{
"name": "inferno-boilerplate",
"version": "0.0.1",
"description": "🔥 Inferno Boilerplate 🔥",
"main": "src/index.js",
"scripts": {
"build": "rm -rf build & webpack --config webpack.prod.js",
"build:serve": " cd build && python -m SimpleHTTPServer 3000",
"lint": "eslint ./",
"server": "webpack-dev-server --quiet --config webpack.dev.js --host 0.0.0.0 --port 4000",
"mk": "babel-node internals/scripts/mk.js",
"start": "npm-run-all --parallel lint server",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garetmckinley/inferno-boilerplate.git"
},
"keywords": [
"inferno",
"boilerplate",
"cerebral",
"jsx"
],
"author": "Garet McKinley <gem@jsb.ro>",
"license": "MIT",
"bugs": {
"url": "https://github.com/garetmckinley/inferno-boilerplate/issues"
},
"devDependencies": {
"autoprefixer": "^6.5.4",
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-plugin-inferno": "1.2.0-beta15",
"babel-plugin-syntax-jsx": "^6.3.13",
"babel-plugin-syntax-object-rest-spread": "^6.3.13",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.3.13",
"css-loader": "^0.26.1",
"dotenv": "^2.0.0",
"eslint": "^3.12.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^1.0.1",
"fs-extra": "^1.0.0",
"glob": "^7.1.1",
"html-webpack-plugin": "^2.24.1",
"inquirer": "^2.0.0",
"node-sass": "^4.0.0",
"npm-run-all": "^3.1.2",
"postcss-loader": "^1.2.1",
"precss": "^1.4.0",
"promise": "^7.1.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "v2.2.0-rc.0",
"webpack-dev-server": "v2.2.0-rc.0",
"webpack-manifest-plugin": "^1.1.0"
},
"dependencies": {
"babel-cli": "^6.18.0",
"history": "^4.4.0",
"inferno": "1.0.0-beta35",
"inferno-component": "1.0.0-beta35",
"inferno-create-element": "1.0.0-beta35",
"inferno-redux": "^0.7.27",
"inferno-router": "1.0.0-beta35",
"node-rest-client": "^2.0.1",
"normalize.css": "^5.0.0",
"redux": "^3.6.0",
"redux-immutable-state-invariant": "^1.2.4",
"redux-thunk": "^2.1.0",
"webpack-dev-server": "v2.2.0-rc.0",
"whatwg-fetch": "^2.0.1"
}
}