-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
106 lines (106 loc) · 2.68 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
99
100
101
102
103
104
105
106
{
"name": "sitegen",
"version": "0.29.0",
"description": "Static site generator",
"main": "./lib/index.js",
"bin": {
"sitegen": "./lib/bin/sitegen.js",
"sitegen-serve": "./lib/bin/sitegen-serve.js",
"sitegen-build": "./lib/bin/sitegen-build.js"
},
"scripts": {
"test": "make lint check test"
},
"eslintConfig": {
"extends": "prometheusresearch",
"plugins": [
"flow-vars"
],
"rules": {
"flow-vars/define-flow-type": 1,
"flow-vars/use-flow-type": 1
},
"globals": {
"expr": true,
"stmt": true,
"ReactClass": true,
"__DEBUG__": true,
"__webpack_public_path__": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreypopp/sitegen.git"
},
"keywords": [
"react",
"static",
"site"
],
"author": "Andrey Popp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreypopp/sitegen/issues"
},
"homepage": "https://github.com/andreypopp/sitegen#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.8.0",
"babel-core": "^6.9.0",
"babel-plugin-transform-runtime": "^6.8.0",
"eslint": "^2.10.1",
"eslint-config-prometheusresearch": "^0.2.0",
"eslint-plugin-flow-vars": "^0.4.0",
"flow-bin": "^0.26.0",
"memory-fs": "^0.3.0",
"mocha": "^2.5.3",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"sloc": "^0.1.10"
},
"peerDependencies": {
"react": "^15.0.2",
"react-dom": "^15.0.2"
},
"dependencies": {
"babel-generator": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-ast-literal": "^0.5.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-runtime": "^6.6.1",
"babel-traverse": "^6.8.0",
"babel-types": "^6.8.1",
"babylon": "^6.8.0",
"bluebird": "^3.3.5",
"bundle-loader": "^0.5.4",
"chalk": "^1.1.3",
"colour": "^0.7.1",
"commander": "^2.9.0",
"css-loader": "^0.23.1",
"debug": "^2.2.0",
"eval": "^0.1.1",
"exit-hook": "^1.1.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"invariant": "^2.2.1",
"lodash": "^4.13.1",
"log-update": "^1.0.2",
"memory-fs": "^0.3.0",
"minimatch": "^3.0.0",
"onetime": "^1.1.0",
"react-helmet": "^3.1.0",
"react-hot-loader": "^3.0.0-beta.2",
"react-router": "^2.4.0",
"reactdown": "1.0.0-alpha14",
"resolve": "^1.1.7",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"validated": "^0.7.1",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}