-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "@burning-duck/rehace",
"version": "0.4.0",
"description": "ReHaCe - React Habitat Cerebral",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/burning-duck/rehace.git"
},
"bugs": {
"url": "https://github.com/burning-duck/rehace/issues"
},
"homepage": "https://github.com/burning-duck/rehace",
"author": "burning-duck",
"contributors": [
"Peter Höffling",
"Jan Rösler"
],
"license": "MIT",
"keywords": [
"cerebral",
"react",
"react-habitat"
],
"scripts": {
"prepublishOnly": "npm run build:lib",
"build:lib": "rimraf dist && cross-env BABEL_ENV=production babel src/ --out-dir=lib/ -s",
"build:docs": "rimraf docs && cross-env NODE_ENV=production webpack --optimize-minimize --config=demo/webpack.config.js",
"start:docs": "rimraf docs && cross-env NODE_ENV=development webpack-dev-server --open --progress --config=demo/webpack.config.js"
},
"devDependencies": {
"@cerebral/react": "^3.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cerebral": "4.0.1",
"cross-env": "^5.1.3",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^2.30.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.10.1"
},
"dependencies": {
"react-habitat": "^0.6.1"
},
"peerDependencies": {
"@cerebral/react": ">=3.0.0",
"cerebral": ">=4.0.0",
"react": ">=15.0.0 <17.0.0",
"react-dom": ">=15.0.0 <17.0.0"
}
}