-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.51 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
{
"name": "vite-react",
"type": "module",
"private": true,
"version": "0.0.0",
"scripts": {
"check": "tsc --noEmit && eslint --max-warnings 0 --ignore-pattern './src/__test__/**/*.spec.ts' --ignore-pattern './src/mocks/**/*' ./src/**/*.{ts,tsx}",
"start": "vite",
"build": "npm run check && tsc && vite build",
"preview": "vite preview",
"test": "jest",
"mock": "vite-node -w -c ./src/mocks/vite.config.ts ./src/mocks/index.ts"
},
"dependencies": {
"@preact/signals-react": "^1.3.8",
"bootstrap": "^5.1.3",
"date-fns": "^2.30.0",
"express": "^4.18.1",
"fp-ts": "^2.16.7",
"io-ts": "^2.2.20",
"io-ts-types": "^0.5.19",
"json-server": "^0.17.3",
"nodemon": "^2.0.16",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.14.1",
"reactstrap": "^9.2.0",
"sass": "^1.63.6",
"ts-essentials": "^9.1.2",
"ts-node": "^10.7.0",
"vite-node": "^0.12.9"
},
"devDependencies": {
"@nabla/vite-plugin-eslint": "^2.0.4 ",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.0",
"@types/json-server": "^0.14.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.56.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.34.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.5.3",
"vite": "^5.3.3"
}
}