-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 940 Bytes
/
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
{
"name": "rr",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "parcel ./src/layout/index.pug",
"convert": "rm -rf text && mkdir text && node convert.js",
"build": "parcel build ./src/layout/index.pug --public-url ./"
},
"devDependencies": {
"autoprefixer": "^9.6.1",
"cssnano": "^4.1.10",
"eslint": "^6.5.0",
"eslint-config-recommended": "^4.0.0",
"eslint-plugin-auto-import": "^0.1.0",
"husky": "^3.0.7",
"jstransformer-markdown-it": "^2.1.0",
"mdpdf": "^2.0.4",
"parcel-bundler": "^1.12.3",
"postcss-custom-media": "^7.0.8",
"postcss-import": "^12.0.1",
"postcss-nesting": "^7.0.1",
"pug": "^2.0.4",
"resize-observer-polyfill": "^1.5.1",
"simple-pandoc": "^0.2.0",
"stylus": "^0.54.7"
},
"dependencies": {
"split.js": "^1.5.11"
},
"husky": {
"hooks": {
"pre-commit": "yarn convert"
}
}
}