-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 934 Bytes
/
package.json
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
38
39
40
{
"name": "webysics",
"version": "1.0.0",
"description": "",
"scripts": {
"update": "yarn dlx @yarnpkg/sdks && yarn",
"bare:app": "fish ./scripts/bare/app.fish",
"bare:mod": "fish ./scripts/bare/mod.fish",
"nx:app": "fish ./scripts/nx/app.fish",
"nx:mod": "fish ./scripts/nx/mod.fish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "yarn@3.6.3",
"workspaces": [
"packages/*",
"packages/**/*",
"!node_modules/*",
"!node_modules/**/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn workspaces run lint:fix"
},
"devDependencies": {
"eslint": "^8.49.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"nx": "16.8.1",
"nx-cloud": "latest",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}