-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.25 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
{
"name": "jambook",
"description": "JAMBook is a project for people who want to use GitHub as their primary writing environment.",
"version": "1.0.0",
"private": "true",
"scripts": {
"dev": "run-p sapper:dev watch:css",
"sapper:dev": "sapper dev",
"watch:css": "NODE_ENV=development postcss src/global.pcss -o static/global.min.css -w",
"build": "run-s build:css sapper:build",
"sapper:build": "sapper build --legacy",
"build:css": "NODE_ENV=production postcss src/global.pcss -o static/global.min.css",
"export": "run-s build:css sapper:export",
"sapper:export": "sapper export --legacy",
"start": "node __sapper__/build",
"update-word-count": "node wordCount.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/posts/*.md": "npm run update-word-count"
},
"dependencies": {
"@rollup/plugin-json": "^4.1.0",
"compression": "^1.7.1",
"polka": "^0.5.2",
"sirv": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@fullcalendar/core": "^5.5.0",
"@fullcalendar/daygrid": "^5.5.0",
"@fullcalendar/timegrid": "^5.5.0",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.2.0",
"@rollup/plugin-url": "^6.0.0",
"@tailwindcss/forms": "^0.2.1",
"autoprefixer": "^10.1.0",
"cssnano": "^4.1.10",
"date-fns": "^2.16.1",
"date-fns-tz": "^1.0.12",
"execa": "^5.0.0",
"front-matter": "^4.0.2",
"glob": "^7.1.6",
"husky": "^4.3.6",
"js-cookie": "^2.2.1",
"lint-staged": "^10.5.3",
"marked": "^1.2.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.2",
"postcss-cli": "^8.3.1",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^1.4.2",
"reading-time": "^1.2.1",
"rollup": "^2.3.4",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"sapper": "^0.28.0",
"svelte": "^3.31.1",
"svelte-fullcalendar": "^1.1.0",
"svelte-previous": "^2.0.0",
"tailwindcss": "^2.0.2"
}
}