-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
70 lines (70 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "course-builder-turbo",
"private": true,
"type": "module",
"packageManager": "pnpm@8.15.5",
"engines": {
"node": "20",
"pnpm": ">=8.15.5"
},
"scripts": {
"build:all": "turbo run build",
"build:cli": "turbo --filter=\"create-course-app\" build",
"build": "turbo run build --filter \"./packages/*\" --filter \"create-course-app\"",
"clean": "turbo run clean && git clean -xdf node_modules",
"dev:all": "turbo run dev",
"dev": "turbo run dev --filter \"./packages/*\"",
"lint": "turbo run lint && manypkg check",
"format:check": "prettier --check .",
"format": "prettier . --write --list-different",
"pre-commit": "lint-staged",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"typecheck": "turbo run typecheck",
"prepare": "husky install",
"check:cli": "turbo lint typecheck --filter \"create-course-app\" && pnpm format:check && manypkg check",
"release": "changeset version",
"pub:beta": "cd cli && pnpm pub:beta",
"pub:release": "cd cli && pnpm pub:release"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx,cjs,mjs}": [
"prettier --write --list-different"
]
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@coursebuilder/eslint-config": "^0.1.0",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@manypkg/cli": "^0.21.3",
"@types/eslint": "^8.44.2",
"@types/jest": "^29.5.8",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/coverage-v8": "1.2.2",
"@vitest/ui": "1.2.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-turbo": "^1.10.12",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-isaacscript": "^2.6.7",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fake-smtp-server": "^0.8.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.1",
"plop": "^4.0.1",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.5.12",
"turbo": "^2.1.1",
"typescript": "5.4.5",
"utils": "workspace:*",
"vite": "5.4.10",
"vitest": "1.6.0"
}
}