-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
52
53
54
55
56
{
"name": "comet-land",
"version": "0.0.1",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"generate-static-files": "turbo run generate-static-files",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "jest --coverage",
"cypress": "turbo run cypress",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"export:blog": "cd apps/blog && yarn export",
"export:resume": "cd apps/resume && yarn export",
"prepare": "husky install"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^27.5.2",
"@types/node": "^18.15.11",
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"codecov": "^3.8.3",
"esbuild": "^0.17.14",
"esbuild-jest": "^0.5.0",
"eslint": "^8.37.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-watch-typeahead": "^1.1.0",
"lint-staged": "^13.2.0",
"intersection-observer": "^0.12.2",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"turbo": "^1.8.8",
"typescript": "^5.0.3"
}
}