-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.16 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
{
"author": "Zheeeng <hi@zheeeng.me>",
"private": false,
"scripts": {
"test": "jest --passWithNoTests",
"dev": "npm-run-all --parallel dev:*",
"dev:lib": "pnpm --filter pointer-lock-movement dev",
"dev:example": "pnpm --filter pointer-lock-movement-example dev",
"build": "pnpm build:lib && pnpm build:example",
"build:lib": "pnpm --filter pointer-lock-movement build",
"build:example": "pnpm --filter pointer-lock-movement-example build",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx ."
},
"devDependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@types/jest": "^28.1.8",
"@types/node": "^18.17.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.45.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"npm-run-all": "^4.1.5",
"pnpm": "^7.33.5",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14"
}
}