-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
37 lines (37 loc) · 1.08 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
31
32
33
34
35
36
37
{
"private": true,
"scripts": {
"build-css": "sass --source-map --load-path ./node_modules/uswds/src/stylesheets tock/tock/static/sass:tock/tock/static/css/dist",
"build-uswds-css": "npx gulp init-no-sass",
"watch-css": "npm run build-css -- --watch",
"prestart": "PUPPETEER_SKIP_DOWNLOAD=true npm install --quiet --no-save",
"start-gulp": "npm run prestart && npx gulp init-no-sass && npx gulp watch",
"start": "npm run build-css && npm run watch-css",
"test": "JEST_PORT=8000 jest"
},
"engines": {
"node": ">=16.14.0"
},
"dependencies": {
"chosen-js": "^1.8.7",
"jquery": "^3.7.1"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"del": "^6.0.0",
"gulp": "^5.0.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"jest": "^28.0.3",
"jest-puppeteer": "^10.0.0",
"node-notifier": "^10.0.0",
"postcss": "^8.4.31",
"postcss-csso": "^5.0.1",
"puppeteer": "^23.6.0",
"sass": "^1.47.0",
"uswds": "^2.13.0"
}
}