-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2 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
{
"name": "docve-theme-timber",
"version": "1.0.0",
"description": "Docve Timber Document Theme",
"repository": "https://github.com/docve/docve-theme-timber.git",
"homepage": "https://github.com/docve/docve-theme-timber#readme",
"author": "Docve",
"license": "MIT",
"scripts": {
"watch:tailwind": "postcss public/tailwind.css -o public/index.css -w",
"build:tailwind": "NODE_ENV=production postcss public/tailwind.css -o public/index.css",
"dev": "rollup -c -w",
"build": "npm run build:tailwind && rollup -c",
"autobuild": "rollup -c -w",
"start": "sirv public -H 0.0.0.0",
"start:dev": "sirv public --dev -H 0.0.0.0",
"lint": "npx npm-run-all -c lint:*",
"lint:prettier": "prettier -c . --config .prettierrc",
"format": "npx npm-run-all -c format:*",
"format:prettier": "prettier --write . --config .prettierrc"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/prompt": "^11.0.0",
"@fullhuman/postcss-purgecss": "^3.1.3",
"@tailwindcss/forms": "^0.2.1",
"autoprefixer": "^10.2.0",
"commitizen": "^4.2.2",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.2",
"postcss-import": "^14.0.0",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^1.4.2",
"rollup": "^2.36.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"sirv-cli": "^1.0.10",
"svelte": "^3.31.2",
"tailwindcss": "^2.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npx yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
}
}