-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.45 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
{
"name": "essa",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"diligent_test": "jest --runInBand",
"test": "jest",
"seed": "ts-node ./prisma/seed.ts",
"sync_imgs": "ts-node ./prisma/sync_uploaded_images.ts",
"cypress": "./node_modules/.bin/cypress open"
},
"dependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.0",
"@mui/lab": "^5.0.0-alpha.59",
"@mui/material": "^5.2.1",
"@prisma/client": "^3.6.0",
"@reduxjs/toolkit": "^1.7.1",
"@types/bcrypt": "^5.0.0",
"@types/formidable": "^2.0.0",
"@types/fs-extra": "^9.0.13",
"@types/nprogress": "^0.2.0",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-slick": "^0.23.7",
"@types/sharp": "^0.29.4",
"@types/superagent": "^4.1.13",
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"colors": "^1.4.0",
"cookie": "^0.4.1",
"cypress-file-upload": "^5.0.8",
"date-fns": "^2.27.0",
"formidable": "^2.0.1",
"fs-extra": "^10.0.0",
"jest": "^27.4.3",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"next": "12.0.4",
"next-redux-wrapper": "^7.0.5",
"nprogress": "^0.2.0",
"react": "17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "17.0.2",
"react-google-recaptcha": "^2.1.0",
"react-password-strength-bar": "^0.4.0",
"react-redux": "^7.2.6",
"react-slick": "^0.28.1",
"react-visibility-sensor": "^5.1.1",
"redux": "^4.1.2",
"sass": "^1.43.5",
"sharp": "^0.29.3",
"slick-carousel": "^1.8.1",
"superagent": "^6.1.0",
"ts-jest": "^27.0.7"
},
"devDependencies": {
"@types/cookie": "^0.4.1",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "16.11.10",
"@types/react": "17.0.37",
"@types/react-google-recaptcha": "^2.1.2",
"cypress": "^9.3.1",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"faker": "^5.5.3",
"form-data": "^4.0.0",
"prisma": "^3.6.0",
"ts-node": "^10.4.0",
"typescript": "4.5.2"
}
}