-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
{
"name": "storeleft",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "next",
"start:prod": "next start",
"build": "next build",
"build:docker": "docker build -f docker/Dockerfile -t storeleft .",
"test": "jest --watch"
},
"dependencies": {
"@chakra-ui/hooks": "^2.0.0",
"@chakra-ui/icons": "^2.0.0",
"@chakra-ui/react": "^2.0.0",
"@choc-ui/chakra-autocomplete": "^4.22.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"axios": "^0.27.2",
"cosmiconfig": "^7.0.1",
"dayjs": "^1.11.2",
"dayzed": "^3.2.2",
"formik": "^2.2.9",
"framer-motion": "^6.3.3",
"lodash": "^4.17.21",
"next": "^12.1.6",
"next-http-proxy-middleware": "^1.2.4",
"pouchdb": "^7.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-swipeable": "^7.0.0",
"react-table": "^7.7.0",
"remeda": "^0.0.32",
"rxjs": "^7.5.5",
"swr": "^1.3.0",
"ts-toolbelt": "^9.6.0",
"zod": "^3.15.1",
"zod-formik-adapter": "^1.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@types/pouchdb": "^6.4.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-table": "^7.7.11",
"concurrently": "^7.1.0",
"eslint-config-next": "^12.1.6",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}