-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
64 lines (64 loc) · 1.94 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
{
"name": "members-site",
"version": "0.1.0",
"private": true,
"volta": {
"node": "18.16.0",
"yarn": "1.22.19"
},
"scripts": {
"run-command:dev-server": "next dev -p 3000",
"run-command:reverse-ssl": "local-ssl-proxy --source 443 --target 3000 --hostname dev.realdevsquad.com",
"dev": "run-p run-command:*",
"build:production": "cp ./env/.env.production .env && next build",
"start": "next start",
"test": "jest --watch",
"lint:check": "next lint",
"lint:fix": "next lint --fix",
"build:staging": "cp ./env/.env.staging .env && next build",
"coverage": "jest --collect-coverage",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"fix": "yarn prettier:fix && yarn lint:fix"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@reduxjs/toolkit": "^2.2.7",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "22.5.0",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"@types/react-toastify": "^4.1.0",
"eslint": "9.9.0",
"eslint-config-next": "14.2.6",
"framer-motion": "^11.3.29",
"module-alias": "^2.2.3",
"next": "14.2.6",
"next-redux-wrapper": "^8.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "^9.1.2",
"react-toastify": "^10.0.5",
"redux-thunk": "^3.1.0",
"typescript": "5.5.4",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"autoprefixer": "^10.4.20",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"local-ssl-proxy": "^2.0.5",
"msw": "^2.4.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.10"
}
}