-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.43 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
78
79
80
{
"name": "identity-reporting",
"version": "0.0.0",
"engines": {
"npm": ">=7"
},
"scripts": {
"build": "vite build",
"postbuild": "npm run generate-routes && cp robots.txt _site/",
"generate-routes": "node -r esbuild-register bin/generate-routes.js",
"pages": "npm run build -- --base=${BASEURL:-/}",
"prettier:fix": "npm run test:lint -- --fix",
"start": "vite --port ${PORT:-3000}",
"test:lint": "eslint . --ext .js,.ts,.tsx",
"test:typecheck": "tsc",
"test:unit": "mocha 'src/**/*.test.{js,ts,tsx}'",
"test": "run-p test:*"
},
"dependencies": {
"@observablehq/plot": "^0.6.4",
"@preact/preset-vite": "^2.5.0",
"autoprefixer": "^10.4.13",
"d3-array": "^3.2.2",
"d3-axis": "^3.0.0",
"d3-dsv": "^3.0.1",
"d3-format": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-time": "^3.1.0",
"d3-time-format": "^4.1.0",
"identity-style-guide": "^6.7.0",
"preact": "^10.13.0",
"preact-fetching": "^0.1.1",
"preact-markdown": "^2.1.0",
"preact-router": "^4.1.0"
},
"devDependencies": {
"@18f/eslint-plugin-identity": "^2.0.0",
"@testing-library/dom": "^9.0.0",
"@testing-library/preact": "^3.2.3",
"@types/chai": "^4.3.4",
"@types/d3-array": "^3.0.4",
"@types/d3-axis": "^3.0.2",
"@types/d3-dsv": "^3.0.1",
"@types/d3-format": "^3.0.1",
"@types/d3-scale": "^4.0.3",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/d3-selection": "^3.0.4",
"@types/d3-shape": "^3.1.1",
"@types/d3-time": "^3.0.0",
"@types/d3-time-format": "^4.0.0",
"@types/jsdom": "^21.1.0",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"chai": "^4.3.7",
"esbuild-register": "^3.4.2",
"eslint": "^8.35.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fetch-mock": "^9.11.0",
"global-jsdom": "^8.7.0",
"jsdom": "^21.1.0",
"mocha": "^10.8.2",
"node-fetch": "^3.3.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.4",
"sass": "^1.58.3",
"sinon": "^15.0.1",
"typescript": "^4.9.5",
"vite": "^4.5.5"
}
}