-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 1.41 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
{
"name": "@compositor/gen",
"version": "1.0.0-4",
"description": "Compositor JSX static site generator",
"main": "lib/index.js",
"bin": {
"gen": "./bin/cli.js"
},
"scripts": {
"build": "./bin/cli.js examples --out-dir .site",
"start": "./bin/cli.js examples -Do --port 9000 --library glamorous",
"test": "nyc ava"
},
"keywords": [
"compositor",
"static-site",
"JSX",
"markdown",
"React"
],
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
"@compositor/webfont": "^1.0.0-1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-standalone": "^6.26.0",
"chalk": "^2.3.0",
"chokidar": "^1.7.0",
"dot-prop": "^4.2.0",
"glamor": "^2.20.40",
"glamorous": "^4.11.0",
"gray-matter": "^3.1.1",
"load-json-file": "^4.0.0",
"meow": "^4.0.0",
"opn": "^5.1.0",
"portfinder": "^1.0.13",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"read-pkg": "^3.0.0",
"read-pkg-up": "^3.0.0",
"remark": "^8.0.0",
"remark-react": "^4.0.1",
"remark-slug": "^4.2.3",
"styled-components": "^2.2.4",
"styled-system": "^1.1.0",
"update-notifier": "^2.3.0",
"ws": "^3.3.2"
},
"devDependencies": {
"ava": "^0.24.0",
"nyc": "^11.3.0"
},
"gen": {
"title": "Gen",
"markdownProps": {
"h1": {
"mt": 5,
"color": "tomato"
}
}
}
}