-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 943 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 943 Bytes
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
{
"name": "cu-prototypes",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next lint && prettier --write .",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"clean": "rm -rf node_modules ; rm package-lock.json ; npm install"
},
"dependencies": {
"@heroicons/react": "2.1.5",
"next": "14.2.5",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@carletonuniversity/rds": "0.15.2",
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "22.4.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"postcss": "8.4.41",
"postcss-import": "16.1.0",
"prettier": "3.3.3",
"rds-tailwind-theme": "0.7.3",
"tailwindcss": "3.4.10",
"typescript": "5.5.4"
}
}