-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1013 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "driverhub",
"version": "5.0.0",
"description": "DriverHub - GPU and Chipset driver downloads",
"scripts": {
"build": "npm run build:version && npm run build:licenses && npm run build:feeds && npm run build:html && npm run build:css",
"build:version": "node ./scripts/update-version-info.js",
"build:licenses": "npm-license-crawler --production --json ./global/licenses.json",
"build:feeds": "node ./scripts/build-feeds.js",
"build:html": "node ./scripts/build-html.js",
"build:css": "tailwindcss -i ./src/input.css -o ./global/tailwind.css --minify",
"watch": "tailwindcss -i ./src/input.css -o ./global/tailwind.css --watch",
"test:data": "node ./scripts/test-data-contract.js",
"test:data:editor": "node ./scripts/test-data-editor.js",
"data:edit": "node ./scripts/data-edit.js",
"data:sync": "node ./scripts/data-sync.js"
},
"devDependencies": {
"npm-license-crawler": "^0.2.1",
"nunjucks": "^3.2.4",
"tailwindcss": "^3.4.0"
}
}