-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.74 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
{
"name": "@gsa-sam/sam-styles",
"version": "3.1.1",
"description": "SASS/CSS component library for SAM.gov, built on USWDS.",
"main": "sam-styles/index.scss",
"sass": "sam-styles/index.scss",
"style": "sam-styles/index.scss",
"exports": {
".": "./sam-styles/index.scss",
"./index.scss": "./sam-styles/index.scss",
"./packages/*": "./sam-styles/packages/*"
},
"files": [
"sam-styles/**/*.scss",
"sam-styles/packages/images/**",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"scripts": {
"test": "stylelint \"sam-styles/**/*.scss\"",
"test:publish-workflow": "node scripts/check-publish-workflow.mjs",
"test:security-workflow": "node scripts/check-security-workflow.mjs && node scripts/check-zap-results.test.mjs",
"test:coverage-workflow": "node scripts/check-coverage-workflow.mjs",
"test:storybook": "playwright test",
"test:a11y": "playwright test --config=playwright.a11y.config.mjs",
"compile:check": "node scripts/compile-check.mjs",
"coverage": "node scripts/coverage-report.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"storybook": "storybook dev -p 6006",
"federalist": "npm run build:storybook",
"start": "npm run start:storybook",
"start:storybook": "storybook dev -p 6006",
"build:storybook": "storybook build -o _site",
"lint": "stylelint \"sam-styles/**/*.scss\"",
"lint:report": "stylelint \"sam-styles/**/*.scss\" --formatter json --output-file stylelint-report.json; true",
"lint:baseline": "npm run lint:report && node scripts/check-lint-baseline.mjs stylelint-report.json",
"lint:baseline:bump": "npm run lint:report && node scripts/check-lint-baseline.mjs --bump stylelint-report.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/GSA/sam-styles.git"
},
"homepage": "https://github.com/GSA/sam-styles#readme",
"bugs": {
"url": "https://github.com/GSA/sam-styles/issues"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@playwright/test": "1.63.0",
"@storybook/addon-links": "10.6.0",
"@storybook/html": "10.6.0",
"@storybook/html-vite": "10.6.0",
"@whitespace/storybook-addon-html": "9.0.0",
"http-server": "14.1.1",
"postcss-scss": "4.0.9",
"prettier": "3.9.6",
"react": "19.3.0",
"react-dom": "19.3.0",
"sass": "^1.102.0",
"storybook": "10.6.0",
"stylelint": "17.15.0",
"stylelint-scss": "7.3.0",
"vite": "8.3.0"
},
"dependencies": {
"@uswds/uswds": "^3.14.0",
"bootstrap-icons": "^1.10.3",
"postcss-import": "16.2.0",
"postcss-preset-env": "11.5.3",
"react-syntax-highlighter": "16.1.1",
"sass-embedded": "^1.102.0"
}
}