-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.15 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
{
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"lint": "eslint src/**/*.ts* --max-warnings 0",
"format": "prettier src/ --write",
"format-check": "prettier src/ --check",
"preview": "vite preview",
"test": "vitest watch",
"test-silent": "vitest --silent",
"test-cover": "vitest --coverage",
"test-ci": "vitest --run",
"prepare": "husky"
},
"name": "component-library",
"version": "1.0.0",
"type": "module",
"private": true,
"description": "NSDA Component Library",
"keywords": [],
"homepage": "https://speechanddebate.org",
"author": "Aaron Hardy <aaron.hardy@speechanddebate.org> (https://speechanddebate.org)",
"license": "UNLICENSED",
"main": "index.js",
"engines": {
"node": ">= 20.12.1"
},
"dependencies": {
"@speechanddebate/nsda-js-utils": "git+https://github.com/speechanddebate/nsda-js-utils.git#v2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@speechanddebate/eslint-config-nsda": "git+https://github.com/speechanddebate/eslint-config-nsda.git#v2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/chai": "^4.3.12",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/parser": "^7.6.0",
"@vitejs/plugin-react": "^4.2.1",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-vitest": "^0.3.22",
"globals": "^14.0.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"msw": "^2.2.7",
"prettier": "3.2.5",
"typescript": "^5.2.2",
"typescript-eslint": "^7.1.1",
"vite": "^5.1.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.3.1"
}
}