-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.84 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
60
61
62
63
{
"name": "my-order",
"version": "2.0.0",
"private": true,
"description": "MyOrder allows you to track food orders effortlessly and provides a summary ready to be exported.",
"type": "module",
"author": "Alen Ajam <[email protected]>",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"@reduxjs/toolkit": "^1.6.2",
"classnames": "^2.3.1",
"firebase": "^9.2.0",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"luxon": "^2.0.2",
"match-sorter": "^6.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-localization": "^1.0.17",
"react-redux": "^7.2.6",
"react-router-dom": "^6.10.0",
"react-transition-group": "^4.4.2",
"redux": "^4.1.2",
"redux-persist": "^6.0.0",
"sort-by": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-flow": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@tsconfig/recommended": "^1.0.1",
"@types/classnames": "^2.3.1",
"@types/jest": "^29.5.0",
"@types/luxon": "^2.0.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-transition-group": "^4.4.4",
"@types/redux-persist": "^4.3.1",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.0",
"babel-jest": "^29.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.31",
"sass": "^1.43.4",
"tailwindcss": "^2.2.19",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.2.3"
}
}