-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.15 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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "auth0-nextjs-sample",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"node api-server\"",
"dev:api": "nodemon api-server",
"build": "next build",
"start": "concurrently \"next start\" \"node api-server\"",
"start:api": "node api-server",
"test": "jest tests --coverage --maxWorkers=10",
"test:watch": "jest --coverage --watch",
"test:integration": "start-server-and-test start http-get://localhost:3000 cypress:run",
"test:integration:watch": "start-server-and-test start http-get://localhost:3000 cypress:open",
"test-debug": "node --inspect tests/test.js",
"cypress:run": "cypress run --browser chrome",
"cypress:open": "cypress open --browser chrome",
"seed": "node -r dotenv/config ./scripts/seed.js",
"drop": "node -r dotenv/config ./scripts/drop.js",
"testseed": "node -r dotenv/config ./scripts/test-seed.ts",
"testdrop": "node -r dotenv/config ./scripts/test-drop.ts",
"local-test": "jest tests/test.js",
"local-test:watch": "jest tests/test.js --watch"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.5.0",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fortawesome/fontawesome-svg-core": "^6.5.0",
"@fortawesome/free-solid-svg-icons": "^6.5.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@heroicons/react": "^2.0.18",
"@mui/icons-material": "^6.0.0",
"@mui/material": "^6.1.2",
"@mui/material-nextjs": "^6.0.0",
"@nextui-org/react": "^2.4.2",
"@react-stately/data": "^3.11.4",
"@tailwindcss/forms": "^0.5.7",
"@toolpad/core": "^0.5.2",
"@vis.gl/react-google-maps": "^1.1.0",
"autoprefixer": "10.4.15",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.3",
"clsx": "^2.0.0",
"concurrently": "^8.2.0",
"cors": "^2.8.5",
"dayjs": "^1.11.11",
"dotenv": "^16.0.3",
"eslint-config-next": "^14.2.2",
"express": "^4.18.2",
"express-jwt": "^8.0",
"framer-motion": "^11.3.2",
"geo-tz": "^8.0.2",
"helmet": "^7.1.0",
"highlight.js": "^11.9.0",
"jose": "^5.4.0",
"jwks-rsa": "^3.1.0",
"mongodb": "^6.6.1",
"morgan": "^1.10.0",
"next": "^14.2.2",
"node-fetch": "^2.6.0",
"nodemon": "^3.0.0",
"pg": "^8.12.0",
"postcss": "8.4.31",
"react": "^18.2.0",
"react-bootstrap": "^2.10.4",
"react-dom": "^18.2.0",
"reactstrap": "^9.1.5",
"redis": "^4.6.13",
"tailwindcss": "3.3.3",
"zod": "^3.22.2"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.3.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-dom": "18.2.14",
"babel-jest": "^29.7.0",
"cypress": "^12.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.0",
"start-server-and-test": "^2.0.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}