-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.8 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
{
"name": "profstatsutd",
"description": "This extension offers a user-friendly interface for accessing aggregated grades and professor ratings effortlessly.",
"private": true,
"version": "1.1.9",
"type": "module",
"scripts": {
"postinstall": "cd api && go mod download",
"create-db": "python3 db_setup/create_db.py && python3 db_setup/test_db.py",
"test-api": "npm run create-db && cd api && go test -v ./...",
"api": "npm run create-db && cd api && nodemon --exec go run main.go --signal SIGTERM",
"vite": "vite",
"dev": "npm run create-db && concurrently \"npm run vite\" \"npm run api\"",
"build": "vite build",
"lint": "eslint . --fix --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write . --tab-width 4 --print-width 160",
"preview": "vite preview"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^2.5.5",
"@choc-ui/chakra-autocomplete": "^5.8.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"axios": "^1.7.7",
"chart.js": "^4.4.5",
"framer-motion": "^11.11.10",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.30",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"concurrently": "^9.0.1",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"nodemon": "^3.1.9",
"prettier": "^3.3.3",
"vite": "^5.4.10"
}
}