-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.38 KB
/
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
41
42
43
{
"name": "newtonxr--root",
"private": true,
"type": "module",
"description": "a webxr library for effortlessly infusing realistic physics into your projects",
"packageManager": "[email protected]",
"engines": {
"node": ">=v18.16.0",
"pnpm": ">=8.11.0"
},
"scripts": {
"build:all": "turbo build",
"build": "turbo build --filter \"./packages/*\"",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev": "turbo dev --filter=\"./packages/*\" --filter=playground",
"dev:pg": "turbo dev --filter=playground",
"dev:docs": "turbo dev --filter docs",
"dev:all": "turbo dev",
"dev:newton": "turbo dev --filter \"./packages/*\"",
"lint": "turbo lint",
"format:check": "prettier --check . ",
"format": "prettier --write . --list-different",
"typecheck": "turbo typecheck",
"postinstall": "manypkg check",
"release": "changeset publish",
"canary:enter": "changeset pre enter canary",
"canary:exit": "changeset pre exit"
},
"dependencies": {
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@manypkg/cli": "latest",
"@newtonxr/eslint-config": "0.1.0",
"@turbo/gen": "^1.10.16",
"@types/node": "18.16.0",
"dotenv": "latest",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"turbo": "^1.10.16",
"typescript": "^5.3.2"
}
}