-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.27 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
{
"name": "erp-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint \"**/*.{ts,tsx}\" --fix",
"test": "jest",
"test:w": "jest --watch",
"test-cover": "jest --coverage",
"prepare": "husky install",
"tsc": "tsc --watch"
},
"dependencies": {
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@reduxjs/toolkit": "^1.8.1",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"cookie": "^0.5.0",
"downloadjs": "^1.4.7",
"framer-motion": "^4.1.17",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.3",
"next": "^12.1.5",
"next-connect": "^0.12.2",
"next-redux-wrapper": "^7.0.5",
"npm": "^8.14.0",
"passport": "^0.5.3",
"passport-local": "^1.0.0",
"pdf-lib": "^1.17.1",
"react": "^17.0.2",
"react-dnd": "^15.1.2",
"react-dnd-html5-backend": "^15.1.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.30.0",
"react-icons": "^4.3.1",
"react-redux": "^7.2.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.2.0",
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.5.1",
"@types/cookies": "^0.7.7",
"@types/downloadjs": "^1.4.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/passport-local": "^1.0.34",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-jest": "^27.3.1",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-next-dynamic": "^1.0.1",
"lint-staged": "^12.4.1",
"msw": "^0.41.0",
"next-router-mock": "^0.6.9",
"prettier": "^2.6.2",
"react-test-renderer": "^17.0.2",
"typescript": "^4.6.3",
"whatwg-fetch": "^3.6.2"
},
"lint-staged": {
"src/**/*.+(js|ts|tsx)": [
"prettier --write",
"eslint --fix"
],
"*.+(json|md)": "prettier --write"
},
"optionalDependencies": {
"@next/swc-linux-x64-gnu": "12.1.5"
}
}