-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 940 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 940 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": "mentat-template-js",
"type": "module",
"scripts": {
"install": "npm install --prefix client && npm install --prefix server",
"dev": "concurrently \"npm run dev --prefix client\" \"npm run dev --prefix server\"",
"build": "npm run build --prefix client && npm run build --prefix server",
"start": "npm start --prefix server",
"lint": "eslint .",
"format": "prettier --write .",
"test": "npm test --prefix client && npm test --prefix server"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"concurrently": "^9.1.2",
"eslint": "^9.23.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
}
}