generated from csci312a-s23/project-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.1 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
{
"name": "student-direct",
"version": "0.1.0",
"private": true,
"contributors": [
"Johnny Kantaros <[email protected]>",
"Matt Daily <[email protected]>",
"Luke Lorenz <[email protected]>",
"Liam Patty <[email protected]>",
"Alexis Ballo <[email protected]>",
"Alec Gironda <[email protected]>",
"Rohan Datar <[email protected]>"
],
"scripts": {
"dev": " next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"@emotion/cache": "^11.10.7",
"@emotion/react": "^11.11.0",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.0",
"ajv-formats": "^2.1.1",
"canvas": "^2.11.2",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^2.30.0",
"db-errors": "^0.2.3",
"departments.js": "^1.1.1",
"directory.js": "^1.0.6",
"knex": "^2.4.2",
"next": "13.2.4",
"next-auth": "^4.22.1",
"next-connect": "^0.13.0",
"next-router-mock": "^0.9.3",
"next-test-api-route-handler": "^3.1.8",
"objection": "^3.0.1",
"pg": "^8.10.0",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-switch": "^7.0.0",
"reactjs-popup": "^2.0.5",
"resize-observer": "^1.0.4",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.6"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md,json,jsx}": "prettier --write"
},
"devDependencies": {
"@react-hook/resize-observer": "^1.2.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^8.8.0",
"fetch-mock-jest": "^1.5.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.2.0",
"next-router-mock": "^0.9.2",
"node-fetch": "^2.6.7",
"prettier": "^2.8.7",
"use-resize-observer": "^9.1.0"
}
}