-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
39 lines (39 loc) · 1.8 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
{
"private": true,
"name": "axiom",
"version": "0.8.0",
"description": "Axiom is a powerful, high performance, modular Hugo theme, designed to make the readers of your content and the search engines happy.",
"author": "Jhaura Wachsman <[email protected]> (https://www.jhaurawachsman.com/)",
"homepage": "https://www.axiomtheme.com/",
"repository": "github:marketempower/axiom.git",
"license": "CC-BY-SA-4.0",
"scripts": {
"css": "npm run css:type && npm run css:syntaxdark && npm run css:syntaxlight && npm run css:app",
"css:app": "postcss ./src/index.css --verbose -o ./assets/app.css",
"css:syntaxdark": "postcss ./src/syntax-dark.css --verbose -o ./assets/syntax-dark.css",
"css:syntaxlight": "postcss ./src/syntax-light.css --verbose -o ./assets/syntax-light.css",
"css:type": "postcss ./src/type.css --verbose -o ./assets/type.css",
"js": "npm run js:index && npm run js:app",
"js:app": "concat -o ./assets/app.js ./src/alpine.min.js ./src/index.min.js",
"js:index": "terser ./src/index.js -c sequences=false,drop_console=true -o ./src/index.min.js",
"dev": "NODE_ENV=development npm run css && npm run js",
"prd": "NODE_ENV=production npm run css && npm run js",
"watch": "npm run watch:css & npm run watch:js",
"watch:css": "chokidar \"./src/**/*.css\" \"./tailwind.config.js\" -c \"NODE_ENV=development npm run css\"",
"watch:js": "chokidar \"./src/**/*.js\" -c \"NODE_ENV=development npm run js\""
},
"devDependencies": {
"autoprefixer": "^10.1.0",
"chokidar-cli": "^2.1.0",
"concat": "^1.0.3",
"cssnano": "^4.1.10",
"del-cli": "^3.0.1",
"postcss": "^8.2.1",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.0",
"postcss-nesting": "^7.0.1",
"tailwindcss": "^2.0.2",
"terser": "^5.5.1"
},
"dependencies": {}
}