-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.33 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.33 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@newjersey/njwds",
"version": "2.9.1",
"description": "NJ Web Design Standards",
"main": "index.js",
"scripts": {
"prepare": "npm run build-njwds",
"build-njwds": "gulp build-njwds",
"import-components": "cp -nr node_modules/uswds/src/components ./src/",
"build-docs": "gulp copy-dist-to-fractal-assets && fractal build",
"start": "fractal start --sync & gulp watch-fractal",
"deploy": "npm ci && npm run build-docs && gh-pages -d build",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint",
"test": "echo \"Warn: no test specified\" && exit 0",
"test:visual": "playwright test --project=visual",
"test:accessibility": "playwright test --project=accessibility",
"test:visual:update": "playwright test --project=visual --update-snapshots=all",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newjersey/njwds.git"
},
"author": "dhcole",
"license": "MIT",
"bugs": {
"url": "https://github.com/newjersey/njwds/issues"
},
"homepage": "https://github.com/newjersey/njwds#readme",
"sideEffects": [
"**/*.css"
],
"dependencies": {
"@newjersey/feedback-widget": "^0.7.1",
"@uswds/uswds": "3.10.0",
"lit": "^3.3.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.0",
"@eslint/js": "^9.39.2",
"@frctl/fractal": "^1.5.15",
"@frctl/nunjucks": "^2.0.5",
"@html-eslint/eslint-plugin": "^0.52.1",
"@playwright/test": "^1.60.0",
"@storybook/addon-a11y": "^10.2.8",
"@storybook/addon-docs": "^10.2.8",
"@storybook/addon-vitest": "^10.2.8",
"@storybook/web-components-vite": "^10.2.8",
"@types/node": "^22.19.6",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"autoprefixer": "^10.4.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-lit": "^2.1.1",
"eslint-plugin-lit-a11y": "^5.1.1",
"eslint-plugin-wc": "^3.0.2",
"gh-pages": "^6.3.0",
"globals": "^17.0.0",
"gulp": "^4.0.2",
"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",
"gulp-svg-sprite": "^2.0.3",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"playwright": "^1.58.2",
"postcss": "^8.3.11",
"postcss-csso": "^5.0.1",
"prettier": "^3.7.4",
"sass": "^1.97.3",
"storybook": "^10.2.13",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"uswds-gulp": "github:uswds/uswds-gulp",
"vite": "^7.3.1",
"vitest": "^4.1.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"overrides": {
"postcss": "^8.3.11",
"got": "^12.1.0",
"braces": "^3.0.3",
"uswds-gulp": {
"gulp-svg-sprite": "$gulp-svg-sprite"
},
"inquirer": {
"lodash": "^4.17.19"
},
"@frctl/fractal": {
"axios": "^1.8.2",
"marked": "4.0.10",
"send": "^0.19.0",
"tmp": "^0.2.4",
"serve-static": "^1.16.0"
}
},
"files": [
"dist",
"src",
"package.json",
"gulpfile.js",
".browserslistrc",
".nvmrc"
]
}