-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 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
54
{
"name": "duopettaja",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"@reduxjs/toolkit": "^2.0.1",
"@types/node": "^20.10.4",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"axios": "^1.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"react-router-dom": "^6.21.0",
"sass": "^1.69.5",
"styled-components": "^6.1.1",
"typescript": "^5.3.3"
},
"scripts": {
"jserver-dev": "json-server db.json --routes routes.json -p 8081",
"jserver": "json-server db.json --routes routes.json -H -p 8081",
"local": "concurrently --kill-others \"npm run jserver\" \"npm run dev\"",
"lint": "eslint src/**/*.{ts,tsx}",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"json-server": "^0.17.4",
"vite": "^5.0.7",
"vite-tsconfig-paths": "^4.2.2"
}
}