-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 847 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 847 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
{
"name": "@partykit/templates",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"check": "concurrently \"npm run repocheck\" \"npm run lint\" \"npm run typecheck\" --kill-others-on-fail",
"lint": "npx eslint \"**/*.[tj]s?(x)\" --max-warnings=0 --report-unused-disable-directives",
"repocheck": "manypkg check",
"typecheck": "npm exec tsc --workspaces"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"templates/*"
],
"dependencies": {
"@manypkg/cli": "^0.21.4",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}