-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.99 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.99 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "codev-feedback-system",
"version": "0.1.0",
"private": true,
"engines": {
"node": "16.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install && chmod ug+x .husky/*",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"data:import": "ts-node --project tsconfig.seeder.json generators/mongodb/seeder.ts -i",
"data:delete": "ts-node --project tsconfig.seeder.json generators/mongodb/seeder.ts -d",
"chromatic": "npx chromatic --project-token=chpt_6261ffd2542a664"
},
"dependencies": {
"@next-auth/mongodb-adapter": "^1.1.1",
"@reduxjs/toolkit": "^1.8.5",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"chart.js": "^4.3.0",
"clsx": "^1.2.1",
"crpyto": "^0.0.1-security",
"dotenv": "^16.0.3",
"express-validator": "^6.14.2",
"formik": "^2.2.9",
"moment": "^2.29.4",
"mongoose": "^6.6.5",
"next": "12.3.1",
"next-absolute-url": "^1.2.2",
"next-auth": "^4.12.0",
"next-connect": "^0.13.0",
"next-seo": "^5.15.0",
"nodemailer": "^6.8.0",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-datepicker": "^4.12.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-input-mask": "^2.0.4",
"react-redux": "^8.0.4",
"react-to-print": "^2.14.10",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"swagger-ui-react": "^4.18.3",
"tailwind-merge": "^1.6.0",
"uuid": "^9.0.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^6.3.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/bcryptjs": "^2.4.2",
"@types/node": "18.7.21",
"@types/nodemailer": "^6.4.6",
"@types/react": "18.0.21",
"@types/react-datepicker": "^4.11.2",
"@types/react-dom": "18.0.6",
"@types/react-input-mask": "^3.0.2",
"@types/redux-logger": "^3.0.9",
"@types/swagger-ui-react": "^4.18.0",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"chromatic": "^6.17.4",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"inquirer-fuzzy-path": "^2.3.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"lint-staged": "^13.0.3",
"next-router-mock": "^0.7.4",
"plop": "^3.1.1",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"storybook-addon-next-router": "^4.0.0",
"tailwindcss": "^3.1.8",
"typescript": "4.8.3",
"webpack": "^5.74.0"
},
"peerDependencies": {
"webpack": "*"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"eslint --max-warnings=0",
"prettier -w"
],
"**/*.{json,css,scss,md}": [
"prettier -w"
]
},
"readme": "ERROR: No README data found!",
"_id": "codev-feedback-system@0.1.0"
}