-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.62 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
{
"name": "@project/frontend",
"version": "0.1.0",
"dependencies": {
"@openstax/orn-locator": "^1.4.1",
"@openstax/ts-utils": "1.50.0",
"@openstax/ui-components": "github:openstax/ui-components#1.23.0",
"@testing-library/jest-dom": "^6.4.7",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.2.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/styled-components": "^5.1.25",
"history": "^5.3.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"styled-components": "^5.3.5",
"typescript": "5.9.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@project/lambdas": "1.0.0",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.1.5",
"cspell": "^10.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"jsdom": "^26.1.0",
"npm-run-all": "^4.1.5",
"typescript-eslint": "^8.48.0",
"vite": "^8.0.16",
"vitest": "^4.1.5"
},
"private": true,
"scripts": {
"build": "./script/build.bash",
"build:clean": "npm run build -- --clean",
"ci": "CI=true npm-run-all ci:*",
"ci:lint": "eslint --max-warnings=0 .",
"ci:spelling": "cspell -c ../../cspell.json --gitignore --gitignore-root ../.. '**'",
"ci:test": "vitest run --coverage",
"ci:typecheck": "tsc --noEmit",
"clean": "rm -rf build",
"coverage-report": "open coverage/index.html",
"dev": "vite",
"preview": "vite preview",
"start": "./script/start.bash",
"test": "vitest"
}
}