-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.97 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
{
"private": true,
"scripts": {
"build": "next build",
"start": "next start",
"prettier": "prettier --write .",
"prepare": "husky install",
"lint": "next lint",
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"test": "jest --passWithNoTests --runInBand --detectOpenHandles",
"user": "jest user.test.ts",
"authentication": "jest authentication.test.ts",
"db-connection": "jest db-connection.test.ts"
},
"dependencies": {
"@babel/preset-typescript": "^7.18.6",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@hapi/iron": "^6.0.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@mui/icons-material": "^5.4.1",
"@mui/lab": "^5.0.0-alpha.68",
"@mui/material": "^5.4.1",
"@sendgrid/mail": "^7.7.0",
"@types/react-transition-group": "^4.4.5",
"cookie": "^0.4.1",
"crypto": "^1.0.1",
"csurf": "^1.11.0",
"emotion": "^11.0.0",
"micro-redirect": "^1.0.2",
"mongodb": "^4.10.0",
"next": "^11.1.4",
"next-connect": "^0.10.2",
"next-cookies": "^2.0.3",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.14.3",
"react-transition-group": "^4.4.5",
"sass": "1.26.3",
"swr": "^1.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.16.7",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.4",
"@types/react": "^17.0.0",
"@types/react-modal": "^3.13.1",
"babel-jest": "^29.2.2",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-next": "^13.0.0",
"husky": "^8.0.1",
"jest": "^29.2.0",
"prettier": "^2.7.1",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}