forked from brandonweiss/charge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.07 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.07 KB
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
{
"name": "@static/charge",
"version": "1.3.0",
"description": "An opinionated, zero-config static site generator",
"author": {
"name": "Brandon Weiss",
"email": "[email protected]"
},
"bin": "cli.js",
"engines": {
"node": ">= 8.10.0"
},
"keywords": [
"jsx",
"markdown",
"mdx",
"react",
"static",
"static-site",
"static-site-generator",
"website"
],
"license": "MIT",
"repository": "https://github.com/brandonweiss/charge",
"scripts": {
"docs": "node cli.js serve docs",
"test": "ava --verbose --serial",
"test:watch": "yarn run test --watch"
},
"devDependencies": {
"ava": "^1.4.1",
"chalk": "^2.4.2",
"dedent": "^0.7.0",
"husky": "^1.3.1",
"np": "^4.0.2",
"prettier": "1.16.4",
"pretty-quick": "^1.10.0",
"react-feather": "^1.1.6",
"supertest": "^4.0.2",
"test-console": "^1.1.0"
},
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/parser": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/traverse": "^7.4.3",
"@mdx-js/mdx": "^0.20.3",
"@mdx-js/tag": "^0.20.3",
"babel-plugin-react-require": "^3.1.1",
"browser-sync": "^2.26.3",
"esm": "^3.2.22",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"lodash.flatmap": "^4.5.0",
"lodash.uniqby": "^4.7.0",
"meow": "^5.0.0",
"pirates": "^4.0.1",
"postcss": "^7.0.14",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.6.0",
"postcss-value-parser": "^3.3.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"remark-abbr": "^1.3.0",
"remark-highlight.js": "^5.1.0",
"rollup": "^1.9.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.1"
},
"ava": {
"require": [
"esm"
],
"sources": [
"!tmp/**/*"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"arrowParens": "always",
"printWidth": 100,
"semi": false,
"trailingComma": "all"
}
}