-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.91 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
{
"name": "solutionvault",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --config jest.config.ts --verbose",
"show-babel-config": "cross-env BABEL_SHOW_CONFIG_FOR=/Users/seanryan/CodeSmith/SolutionVault/src/app/problemForm.tsx npx babel src/app/problemForm.tsx"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.18",
"@mui/material": "^5.15.18",
"@mui/styled-engine-sc": "^6.0.0-alpha.18",
"@nextui-org/react": "^2.3.6",
"@types/bootstrap": "^5.2.10",
"axios": "^1.7.1",
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fetch-blob": "^4.0.0",
"formdata-polyfill": "^4.0.10",
"next-themes": "^0.3.0",
"node-fetch": "^2.7.0",
"node-mocks-http": "^1.14.1",
"nodemailer": "^6.9.13",
"path": "^0.12.7",
"pg": "^8.11.5",
"popper.js": "^1.16.1",
"react": "^18",
"react-dom": "^18",
"styled-components": "^6.1.11",
"util": "^0.12.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/node-fetch": "^2.6.11",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"next": "^14.2.3",
"supertest": "^7.0.0",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"whatwg-fetch": "^3.6.20"
}
}