-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
36 lines (36 loc) · 903 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
{
"name": "react-babylonjs",
"private": true,
"workspaces": {
"packages": [
"devtool/*",
"packages/react-babylonjs",
"packages/static"
]
},
"scripts": {
"build": "yarn workspaces run build",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"prepare": "husky install",
"start-docs": "yarn workspace @react-babylonjs/docs start"
},
"devDependencies": {
"@parcel/packager-ts": "^2.2.0",
"@parcel/transformer-typescript-types": "^2.2.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.6.1",
"prettier-plugin-organize-imports": "^2.3.4",
"rimraf": "^3.0.2",
"typescript": ">=4.6.2"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"lint-staged": {
"*.{js,css,md,mdx,jsx,tsx,ts,json}": "prettier --write"
}
}