-
Notifications
You must be signed in to change notification settings - Fork 229
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.31 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.31 KB
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
71
72
{
"name": "courselit",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"author": {
"name": "The CodeLit Team",
"email": "hi@codelit.dev"
},
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/codelitdev/courselit"
},
"license": "MIT",
"scripts": {
"lint": "eslint packages apps/docs apps/web --quiet",
"prettier": "prettier --write packages apps docs *.md",
"build": "pnpm -r --filter=!@courselit/docs run build",
"clean": "pnpm -r run clean",
"ci:publish": "pnpm publish -r --no-git-checks",
"dev": "pnpm --filter @courselit/web dev",
"prepare": "husky",
"release": "./release.sh",
"test": "NODE_OPTIONS='--experimental-vm-modules' SUPPRESS_JEST_WARNINGS=1 jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' SUPPRESS_JEST_WARNINGS=1 jest --watch",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' SUPPRESS_JEST_WARNINGS=1 jest --coverage"
},
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"eslint": "^9.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.3.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"mongodb-memory-server": "^10.1.4",
"prettier": "^3.0.2",
"tailwindcss": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"engineStrict": true,
"lint-staged": {
"*.{ts,tsx,js,css,md}": "prettier --write packages apps docs *.md",
"*.{ts,tsx}": "eslint --quiet --cache --fix packages apps/docs apps/web"
},
"pnpm": {
"overrides": {
"prosemirror-model": "^1.22.3",
"prosemirror-view": "^1.34.2",
"@types/react": "18.3.7",
"@types/react-dom": "18.3.0"
}
}
}