-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.81 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
55
56
57
58
59
{
"name": "pizza-ordering-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write src",
"lint": "eslint src --ext .jsx,.js,.tsx,.ts --no-error-on-unmatched-pattern --fix && stylelint --fix src/{,*/}*.{scss,css} --allow-empty-input"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.3",
"@types/lodash.identity": "^3.0.9",
"@types/lodash.pickby": "^4.6.9",
"@types/react-paginate": "^7.1.4",
"@types/react-redux": "^7.1.33",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.8",
"axios": "^1.6.8",
"lodash.debounce": "^4.0.8",
"lodash.identity": "^3.0.0",
"lodash.pickby": "^4.6.0",
"qs": "^6.12.1",
"react": "^18.2.0",
"react-content-loader": "^7.0.0",
"react-dom": "^18.2.0",
"react-paginate": "^8.2.0",
"uuid": "^9.0.1",
"vercel": "^34.1.8"
},
"devDependencies": {
"@it-incubator/eslint-config": "^1.0.2",
"@it-incubator/prettier-config": "^0.1.2",
"@it-incubator/stylelint-config": "^1.0.3",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.12.7",
"@types/qs": "^6.9.15",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-redux": "^8.1.2",
"react-router-dom": "^6.22.3",
"sass": "^1.75.0",
"stylelint": "^16.3.1",
"typescript": "^5.2.2",
"vite": "^5.2.0"
}
}