This repository has been archived by the owner on Aug 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
50 lines (50 loc) · 1.51 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
{
"author": "devPT Team",
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
],
"description": "devPt community website",
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@fortawesome/fontawesome-free": "^5.15.2",
"@fullhuman/postcss-purgecss": "^4.0.0",
"@tailwindcss/typography": "^0.4.0",
"alpinejs": "^2.8.0",
"autoprefixer": "^10.2.4",
"eslint": "^7.18",
"hugo-bin": "^0.68.0",
"markdownlint-cli": "^0.26",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.0",
"prettier": "^2.2.1",
"prettier-plugin-go-template": "^0.0.10",
"rimraf": "^3.0",
"standard-version": "^9.1",
"tailwindcss": "^2.0.3"
},
"license": "MIT",
"main": "main.js",
"name": "devpt-hugo-theme",
"repository": "https://github.com/devpt-org/devpt-org.github.io",
"scripts": {
"build": "NODE_ENV=production hugo --gc --minify",
"build:preview": "npm run build -D -F",
"clean": "rimraf public resources",
"lint": "npm run -s lint:scripts && npm run -s lint:markdown",
"lint:markdown": "markdownlint *.md content/**/*.md",
"lint:scripts": "eslint assets/js",
"start": "hugo server --disableFastRender",
"start:prod": "NODE_ENV=production hugo server --disableFastRender",
"precheck": "npm version",
"check": "hugo version",
"release": "standard-version",
"test": "npm run -s lint"
},
"version": "0.0.2"
}