-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.08 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.08 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
{
"name": "uoftblueprint.github.io",
"version": "1.0.0",
"private": true,
"scripts": {
"format": "prettier --write \"app/**/*.{js,jsx,ts,tsx}\" \"components/**/*.{js,jsx,ts,tsx}\"",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint \"app/**/*.{js,jsx,ts,tsx}\" \"components/**/*.{js,jsx,ts,tsx}\" --quiet"
},
"dependencies": {
"@mantine/core": "^7.13.1",
"@mantine/hooks": "^7.13.1",
"next": "^14.2.24",
"prettier": "^3.2.5",
"react": "^18",
"react-dom": "^18",
"save-dev": "^0.0.1-security"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/axios": "^0.14.0",
"@types/jest": "^29.5.12",
"@types/react": "18.2.56",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.1",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.15.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.24.1"
}
}