-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.83 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
{
"name": "documents",
"version": "1.2.0",
"description": "PHPDocSpark documentation platform by Mark Hazleton",
"main": "index.js",
"engines": {
"node": ">=20.19.0",
"npm": ">=10.0.0"
},
"scripts": {
"update-version": "node scripts/update-version.js",
"dev": "vite build --watch",
"dev:serve": "concurrently \"npm run dev\" \"npm run serve\"",
"build": "node scripts/build.js",
"build:prod": "NODE_ENV=production npm run build",
"start": "npm run clean && npm run build && npm run serve",
"serve": "php -S localhost:8001 -t website",
"clean": "rimraf website/assets/css website/assets/js website/assets/images",
"lint:js": "eslint src/**/*.js",
"lint:css": "stylelint src/**/*.scss",
"format": "prettier --write \"src/**/*.{js,scss,css}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install || echo 'Husky not installed'"
},
"author": "Mark Hazleton",
"license": "MIT",
"dependencies": {
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"chart.js": "^4.5.1",
"datatables.net": "^2.3.8",
"datatables.net-bs5": "^2.3.8",
"datatables.net-buttons": "^3.2.6",
"datatables.net-buttons-bs5": "^3.2.6",
"datatables.net-responsive": "^3.0.8",
"datatables.net-responsive-bs5": "^3.0.8",
"jquery": "^4.0.0",
"jszip": "^3.10.1",
"prismjs": "^1.30.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.7.0",
"concurrently": "^9.2.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"postcss": "^8.5.14",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"sass": "^1.99.0",
"stylelint": "^17.11.0",
"stylelint-config-standard-scss": "^17.0.0",
"terser": "^5.47.1",
"vite": "^8.0.12"
}
}