-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "postcss-homepage",
"private": true,
"homepage": "https://postcss.org/",
"repository": "postcss/postcss.org",
"license": "MIT",
"type": "module",
"scripts": {
"start": "vite --open",
"test:js": "eslint .",
"test:css": "stylelint src/**/*.pcss",
"test:build": "node --run build && size-limit",
"test": "pnpm run /^test:/",
"clean": "rm -Rf dist/",
"build:home": "NODE_ENV=production ./scripts/build-home.js",
"build:api": "NODE_ENV=production ./scripts/build-api.js",
"build:docs": "NODE_ENV=production ./scripts/build-docs.js",
"build": "node --run build:home && node --run build:api && node --run build:docs",
"start:build": "serve dist"
},
"dependencies": {
"@types/node": "^22.7.4",
"autoprefixer": "^10.4.20",
"jstransformer-lowlight": "^0.1.0",
"postcss": "^8.4.47",
"postcss-hexrgba": "^2.1.0",
"postcss-media-minmax": "^5.0.0",
"postcss-nested": "^6.2.0",
"rehype-highlight": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.0",
"remark-highlight.js": "^8.0.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"typedoc": "^0.24.8",
"typescript": "~5.0.4",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vite": "^5.4.8",
"vite-plugin-pug-transformer": "^1.0.5"
},
"devDependencies": {
"@logux/eslint-config": "^53.4.0",
"@logux/stylelint-config": "^0.20.0",
"@size-limit/file": "^11.1.6",
"eslint": "^9.11.1",
"highlight.js": "^11.10.0",
"nano-staged": "^0.8.0",
"serve": "^14.2.3",
"simple-git-hooks": "^2.11.1",
"size-limit": "^11.1.6",
"stylelint": "^16.9.0",
"svgo": "^3.3.2"
},
"engines": {
"node": "^22.0.0"
}
}