forked from ScottyLabs/cmucourses
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 692 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 692 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
{
"name": "cmucourses",
"private": true,
"packageManager": "bun@1.2.3",
"scripts": {
"dev": "nx run-many -c development -t dev --parallel",
"build": "nx run-many -t build --parallel",
"start": "nx run-many -t start --parallel",
"format": "prettier --write . --ignore-path .gitignore"
},
"devDependencies": {
"@nx/next": "19.6.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint-config-prettier": "^8.10.0",
"nx": "19.6.3",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"react-big-calendar": "^1.18.0"
}
}