-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.07 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "edpn",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"dev-api": "concurrently \"next dev\" \"yarn api\"",
"mock": "json-server --watch ./mock/_db.js --routes ./mock/routes.json --middlewares ./mock/middlewares/_postAsGet.js --port 3001",
"api": "nodemon --watch mock --exec 'json-server ./mock/_db.js --routes ./mock/routes.json' --middlewares ./mock/middlewares/_postAsGet.js --port 3001",
"build": "next build",
"copy-standalone-assets": "cp -R .next/static .next/standalone/.next && cp -R public .next/standalone",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky install",
"prettier": "prettier --write .",
"analyze": "ANALYZE=true yarn build",
"analyze:server": "BUNDLE_ANALYZE=server yarn build",
"analyze:browser": "BUNDLE_ANALYZE=browser yarn build",
"test": "yarn test:e2e && yarn test:unit",
"test:e2e": "playwright test",
"test:unit": "jest",
"clean": "rm -rf .next && rm -rf node_modules && yarn install",
"capture-screenshots": "RUN_SCREENSHOT_TEST=true yarn test"
},
"dependencies": {
"@chakra-ui/anatomy": "^2.2.2",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/resolvers": "^3.3.4",
"@playwright/test": "^1.42.1",
"@types/node": "^20.11.25",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"chakra-react-select": "^4.7.6",
"concurrently": "^8.2.2",
"eslint": "8.57.0",
"eslint-config-next": "^14.1.3",
"framer-motion": "^10.12.16",
"json-server": "^0.17.3",
"next": "^14.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.0",
"swr": "^2.2.5",
"typescript": "^5.4.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.4",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^10.3.10",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"nodemon": "^3.1.0",
"npm-check": "^6.0.1",
"prettier": "^2.8.8",
"react-select-event": "^5.5.1"
},
"engines": {
"node": ">= 18.12.0",
"yarn": ">= 1.22.19",
"npm": "Please use Yarn instead of NPM.",
"pnpm": "Please use Yarn instead of NPM."
},
"packageManager": "[email protected]"
}