-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.95 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
57
58
59
{
"name": "task",
"version": "0.0.1",
"private": true,
"workspaces": [
"clients/*"
],
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build ",
"dev": "turbo dev",
"lint": "turbo lint",
"tsc": "turbo tsc",
"test": "turbo test",
"format-lint": "prettier --config .prettierrc --check --ignore-unknown .",
"format-fix": "prettier --config .prettierrc --write --ignore-unknown -l .",
"clean": "npm exec --workspaces -- shx rm -rf node_modules .next .turbo coverage dist compiled build-next-static && shx rm -rf node_modules",
"remove-turbo-cache": "shx rm -rf ./node_modules/.cache/turbo",
"update-dependencies": "turbo update-dependencies && npx npm-check-updates -u"
},
"devDependencies": {
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@connectrpc/protoc-gen-connect-es": "^1.5.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.9",
"@testing-library/dom": "9.3.4",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "14.5.2",
"@types/node": "20.11.10",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "10.4.17",
"commitizen": "4.3.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.13",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"next-router-mock": "^0.9.0",
"next-sitemap": "^2.5.28",
"postcss": "8.4.33",
"prettier": "3.2.4",
"prettier-plugin-tailwindcss": "0.5.11",
"tailwindcss": "3.4.1",
"ts-node": "10.9.2",
"tsup": "8.0.1",
"turbo": "1.11.3",
"typescript": "5.3.3"
},
"dependencies": {
}
}