-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.41 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.41 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
{
"name": "digital-collections-style-guide",
"version": "1.0.0",
"description": "A workshop repo to design and develop the details of the digital collections front-end. ",
"main": "index.js",
"devDependencies": {
"esbuild": "^0.25.8",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"sass": "^1.89.2",
"fast-glob": "^3.2.11"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-js": "npx esbuild --bundle src/js/image/*.js --bundle src/js/text/*.js --outdir=dist --outbase=src --target=es2015",
"watch-js": "npx esbuild --bundle src/js/image/*.js --bundle src/js/text/*.js --outdir=dist --outbase=src --target=es2015 --watch --sourcemap",
"build-sass": "node ./scripts/build-sass.mjs",
"watch-sass": "nodemon -e scss --watch src/scss --exec 'node ./scripts/build-sass.mjs'",
"start": "npm-run-all --parallel watch-js watch-sass",
"release": "rsync -av --exclude=node_modules --exclude=.git . quod-update.umdl.umich.edu:/quod/web/digital-collections-style-guide"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlibrary/digital-collections-style-guide.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mlibrary/digital-collections-style-guide/issues"
},
"homepage": "https://github.com/mlibrary/digital-collections-style-guide#readme",
"dependencies": {
"tocbot": "^4.18.2"
}
}