-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.98 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.98 KB
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
{
"name": "temp-ppage",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"predev": "node scripts/encrypt.js || true",
"dev": "node scripts/dev-with-cleanup.js",
"decrypt": "node scripts/decrypt.js",
"prebuild": "node scripts/encrypt.js || true",
"build": "vite build",
"prebuild:ssg": "node scripts/encrypt.js || true",
"build:ssg": "vite build && node scripts/prerender.js && node scripts/generate-sitemap.js",
"clean": "rm -rf dist",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint . --ext .js,.jsx",
"lint:css": "stylelint \"**/*.css\"",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
"lint:js:fix": "eslint . --ext .js,.jsx --fix",
"lint:css:fix": "stylelint \"**/*.css\" --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md,css}\"",
"format:check": "prettier --check \"**/*.{js,jsx,json,md,css}\"",
"preview": "vite preview --port 4173",
"init": "node scripts/init.js",
"update": "node scripts/update.js",
"encrypt": "node scripts/encrypt.js",
"deploy": "./scripts/deploy.sh",
"prepare": "husky"
},
"bin": {
"ppage": "./scripts/init.js"
},
"dependencies": {
"highlight.js": "^11.11.1",
"js-yaml": "^4.1.1",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-task-lists": "^2.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.11.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"vite": "^7.2.4",
"vite-plugin-static-copy": "^3.1.4"
}
}