-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.69 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
{
"name": "digital-access-reporting-tool",
"version": "0.0.1",
"type": "module",
"engines": {
"node": ">=18.19.0"
},
"scripts": {
"frontend": "vite --host 0.0.0.0 --port 3000",
"watch-styles": "chokidar 'frontend/**/*.css' 'frontend/**/*.tsx' -c 'npm run build-css'",
"build-css": "postcss frontend/index.css -o public/styles.css",
"backend": "tsx watch backend/server.ts",
"dev": "watch-styles & npm-run-all --parallel backend frontend",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier:check": "npx prettier . --check",
"prettier:fix": "npx prettier . --write",
"setup": "npm install && npx playwright install"
},
"dependencies": {
"accessibility-checker": "^3.1.70",
"axios": "^1.7.2",
"cheerio": "^1.0.0-rc.12",
"express": "^4.19.2",
"playwright": "^1.45.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"winston": "^3.13.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"chokidar-cli": "^3.0.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"esm": "^3.2.25",
"npm-run-all": "^4.1.5",
"postcss-cli": "^11.0.0",
"postcss-watch": "^0.1.1",
"prettier": "3.3.1",
"tailwindcss": "^3.4.3",
"tsx": "^4.9.3",
"typescript": "^5.2.2",
"vite": "^5.2.0"
}
}