-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
86 lines (86 loc) · 2.09 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
{
"name": "bae",
"version": "1.4.0",
"description": "react made easy",
"homepage": "https://github.com/siddharthkp/bae#readme",
"repository": "siddharthkp/bae",
"scripts": {
"test": "eslint .",
"benchmarks": "node benchmark/test.js",
"precommit": "lint-staged"
},
"private": true,
"workspaces": [
"packages/bae",
"packages/examples/simple"
],
"keywords": [
"react",
"easy",
"server rendering",
"ssr",
"code splitting",
"hot module replacement",
"bae"
],
"files": [
"dev",
"prod",
"utils",
"index.js"
],
"author": "siddharthkp",
"license": "MIT",
"dependencies": {
"babel-cli": "6.23.0",
"babel-loader": "6.3.2",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-react-constant-elements": "6.9.1",
"babel-plugin-transform-react-inline-elements": "6.8.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0",
"chokidar": "1.6.1",
"clear-require": "2.0.0",
"compression": "1.6.2",
"dependency-tree": "5.9.0",
"eslint-plugin-import": "2.2.0",
"express": "4.14.1",
"fs-extra": "1.0.0",
"prettycli": "1.0.1",
"rapscallion": "2.1.5",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-hot-loader": "3.0.0-beta.6",
"styled-components": "2.0.0-8",
"webpack": "2.2.1",
"webpack-dev-server": "2.3.0",
"webpack-hot-middleware": "2.17.1",
"webpack-node-externals": "1.5.4"
},
"devDependencies": {
"babel-eslint": "7.1.1",
"eslint": "3.16.0",
"eslint-config-airbnb-base": "11.1.0",
"eslint-config-react": "1.1.7",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-react": "6.10.0",
"eslint-plugin-standard": "2.0.1",
"husky": "0.13.3",
"lint-staged": "3.4.0",
"prettier": "1.2.2"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"bugs": {
"url": "https://github.com/siddharthkp/bae/issues"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --no-semi",
"git add"
]
}
}