-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
44
45
46
47
48
49
50
51
{
"name": "my-turborepo",
"version": "0.0.0",
"private": true,
"description": "",
"author": "",
"license": "UNLICENSED",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test",
"test:e2e": "turbo test:e2e",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky"
},
"devDependencies": {
"@chess-d/configs": "workspace:*",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@jest/globals": "^29.7.0",
"@quick-threejs/config": "^0.1.7",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/supertest": "^6.0.0",
"@vercel/style-guide": "^6.0.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.0.4",
"globals": "^15.8.0",
"husky": "^9.0.11",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"path": "^0.12.7",
"prettier": "^3.3.1",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.2",
"turbo": "^2.0.9",
"typescript": "^5.3.3",
"vite": "^5.2.12"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"dependencies": {
"@changesets/cli": "^2.27.7"
}
}