generated from hackforla/.github-hackforla-base-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
30 lines (29 loc) · 1.12 KB
/
package.json
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": "internship-website-design-system",
"version": "1.0.0",
"description": "This design system is a project of _Hack for LA_. It helps teams customize and develop their websites and applications. This design system is meant to provide necessary web components and make them easy to customize.",
"main": "index.js",
"author": "hackforla",
"license": "GPL-2.0",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky",
"pa11y": "node scripts/pa11y-test.js",
"build-css": "sass docs/components/sass/main.scss docs/dist/main.css",
"watch-sass": "sass --watch docs/components/sass:docs/dist --verbose",
"serve-mkdocs": "mkdocs serve --dev-addr 0.0.0.0:8000",
"dev": "concurrently \"sass --watch docs/components/sass:docs/dist\" \"mkdocs serve --dev-addr=0.0.0.0:8000\"",
"start": "npm run watch-sass & npm run serve-mkdocs",
"postinstall": "npm install -g sass"
},
"devDependencies": {
"concurrently": "^6.2.0",
"csv-writer": "^1.6.0",
"husky": "^9.0.11",
"pa11y": "^8.0.0",
"sass": "^1.79.4"
}
}