forked from jfroggatt11/White-Paper-Toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 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
{
"name": "project-delivery-toolkit",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"lint": "eslint .",
"preview": "vite preview",
"prebuild": "node scripts/build-data.mjs",
"build": "node scripts/build-data.mjs && node scripts/check-links.mjs && vite build",
"check-links": "node scripts/check-links.mjs",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch"
},
"dependencies": {
"papaparse": "^5.5.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-virtuoso": "^4.14.1",
"recharts": "^3.2.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
"@vitest/coverage-v8": "^4.0.4",
"@vitest/ui": "^4.0.4",
"autoprefixer": "^10.4.21",
"csv-parse": "^6.1.0",
"dotenv": "^17.2.3",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"jsdom": "^27.0.1",
"node-fetch": "^3.3.2",
"playwright": "^1.58.2",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"vite": "^7.1.7",
"vitest": "^4.0.4"
}
}