-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
77 lines (77 loc) · 2.86 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
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
{
"name": "california-design-system",
"version": "1.0.13",
"description": "State of California Design System A work in progress!",
"main": "index.js",
"scripts": {
"component-audit": "node docs/src/js/component-audit.js",
"build": "echo \"WARN: no build specified\" && exit 0",
"dev": "npm run site:dev",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"format": "npm run format:eslint && npm run format:prettier",
"lint:eslint:fix": "eslint --ext .js,.html . --ignore-path .gitignore --fix",
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"lint": "npm run lint:eslint && npm run lint:prettier",
"prepare": "husky install",
"site:build:dev": "cross-env NODE_ENV=development eleventy",
"site:build": "eleventy",
"site:convert:illustrations": "node docs/src/11ty/format-illustrations.js",
"site:dev": "npm run site:watch:dev",
"site:start": "npm run site:watch",
"site:watch:dev": "cross-env NODE_ENV=development eleventy --serve --incremental",
"site:watch": "eleventy --serve",
"start": "npm run site:start",
"test:serve": "npm run site:build && npx http-server _site/",
"test:setup": "npx playwright install-deps chromium && npx playwright install",
"test:site": "npx playwright test test/index.spec.mjs",
"test:visual": "web-test-runner **/*.test.js --node-resolve --config test/test.config.js",
"test": "web-test-runner **/*.test.js --node-resolve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cagov/design-system.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cagov/design-system/issues"
},
"homepage": "https://github.com/cagov/design-system#readme",
"devDependencies": {
"@open-wc/eslint-config": "^4.3.0",
"@open-wc/testing": "^3.0.0-next.2",
"@playwright/test": "^1.25.1",
"@web/dev-server": "^0.1.17",
"@web/test-runner": "^0.13.16",
"@web/test-runner-puppeteer": "^0.10.5",
"aws-sdk": "^2.1354.0",
"axe-playwright": "^1.1.9",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"prettier": "^2.4.1",
"rollup-plugin-import-css": "^2.0.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"workspaces": [
"./components/*"
],
"dependencies": {
"@11ty/eleventy": "^2.0.0-canary.15",
"@cagov/11ty-build-system": "^1.0.0-beta.2",
"@cagov/ds-page-feedback": "file:components/page-feedback",
"cheerio": "^1.0.0-rc.12",
"cross-env": "^7.0.3",
"glob": "^7.2.0",
"highlight.js": "^11.3.1",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.4",
"sharp": "^0.32.6"
}
}