-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 903 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 903 Bytes
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
{
"name": "jazzband",
"version": "2024.7.0",
"description": "Code for the Jazzband website",
"directories": {
"doc": "docs"
},
"dependencies": {
"loading-attribute-polyfill": "^2.1.1"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.16.1",
"parcel": "^2.16.1",
"sass": "^1.94.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jazzband/website.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jazzband/website/issues"
},
"homepage": "https://github.com/jazzband/website#readme",
"private": true,
"scripts": {
"build": "npm exec -- parcel build jazzband/static/css/styles.scss --public-url=/static/dist/ --dist-dir jazzband/static/dist/ --no-cache && npm exec -- parcel build jazzband/static/js/app.js --public-url=/static/dist/ --dist-dir jazzband/static/dist/ --no-cache"
}
}