-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.86 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
{
"name": "project-kakapo",
"description": "A proficiency tracker for use in a classroom setting, by both students and professors.",
"version": "0.1.0",
"private": true,
"author": "Kakapo",
"git": "https://github.com/csci0312-f22/project-kakapo",
"contributors": [
"Christopher Andrews <candrews@middlebury.edu>",
"Michael Linderman <mlinderman@middlebury.edu>",
"Danzan Achit-Erdene",
"Blair Jia",
"Evey Kriter",
"Julia Fairbank",
"Kent Canonigo",
"Nellie Zhang",
"Smith Gakuya"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"test": "jest",
"lint": "eslint src",
"prepare": "husky install",
"seed": "NEXT_PUBLIC_EMULATE=true node src/utils/seed-database.mjs data/seed.json",
"emulators:stop": "lsof -t -i:5000 -i:5001 -i:5002 -i:8080 -i:9000 -i:9099 -i:9199 -i:9090 | xargs kill -9"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.16",
"@mui/material": "^5.10.17",
"bootstrap": "^5.2.3",
"firebase": "^9.14.0",
"kill-port": "^2.0.1",
"next": "12.3.1",
"react": "18.2.0",
"react-bootstrap": "^2.6.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"eslint": "^8.25.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.9",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"lint-staged": "^13.0.3",
"next-router-mock": "^0.7.4",
"prettier": "^2.7.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md,json,jsx}": "prettier --write"
}
}