-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "slick",
"version": "0.5.0",
"description": "A Hugo theme focused on content, cleanliness, speed, responsiveness and privacy.",
"repository": {
"type": "git",
"url": "git+https://github.com/spookey/slick.git"
},
"author": "Frieder Grießhammer",
"license": "MIT",
"bugs": {
"url": "https://github.com/spookey/slick/issues"
},
"homepage": "https://github.com/spookey/slick#readme",
"dependencies": {
"purecss": "^3.0.0",
"source-code-pro": "^2.38.0",
"source-sans": "^3.46.0",
"source-serif": "^4.5.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"del-cli": "^6.0.0",
"postcss-discard-comments": "^7.0.3",
"postcss-import": "^16.1.0",
"postcss-url": "^10.1.3",
"rollup": "^4.24.0",
"rollup-plugin-copier": "^1.1.0",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.8.0",
"typescript": "^5.6.3"
},
"scripts": {
"preversion": "npm run dist",
"version": "git add -Afv assets static",
"dev": "rollup -c --environment BUILD:dev",
"devdist": "rollup -c --environment BUILD:dist",
"dist": "npm run clean && npm run devdist",
"watch": "npm run dev -- --watch",
"clean": "del 'assets' 'static' '_sites/*/public' '_sites/*/resources'"
}
}