-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
32 lines (32 loc) · 1007 Bytes
/
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
{
"name": "uswds-sandbox",
"private": true,
"author": "USWDS",
"license": "CC0-1.0",
"scripts": {
"build": "npx @11ty/eleventy",
"federalist": "npm run init && npm run build && npm run uswds:buildSass",
"init": "npm run uswds:buildDist && npm run uswds:copyAssets",
"serve": "npx @11ty/eleventy --serve",
"start": "concurrently 'npm run serve' 'npm run watch'",
"uswds:buildDist": "./build.sh",
"uswds:buildSass": "gulp buildSass",
"uswds:compileIcons": "gulp compileIcons",
"uswds:copyAssets": "gulp copyAssets",
"uswds:copyFonts": "gulp copyFonts",
"uswds:copyImages": "gulp copyImages",
"uswds:copyJS": "gulp copyJS",
"uswds:update": "npm update uswds && npm run uswds:buildDist",
"watch": "gulp watchSass",
"test": "snyk test"
},
"dependencies": {
"@uswds/uswds": "3.11.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@uswds/compile": "^1.2.1",
"concurrently": "^9.1.2",
"snyk": "^1.1294.3"
}
}