-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "courselit",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"author": {
"name": "The CodeLit Team",
"email": "[email protected]"
},
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/codelitdev/courselit"
},
"license": "MIT",
"scripts": {
"lint": "eslint packages apps/docs apps/web/pages apps/web/components",
"prettier": "prettier --write packages apps docs *.md",
"build": "yarn workspaces foreach -t --exclude @courselit/docs run build",
"clean": "yarn workspaces foreach run clean",
"publish": "yarn workspaces foreach --no-private npm publish",
"dev": "yarn workspace @courselit/web dev",
"prepare": "husky",
"release:patch": "./release.sh patch",
"release:minor": "./release.sh minor"
},
"packageManager": "[email protected]",
"devDependencies": {
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.0.2"
},
"engines": {
"yarn": "~3.2.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/pages apps/web/components apps/web/auth.config.ts apps/web/auth.ts"
},
"resolutions": {
"prosemirror-model": "^1.22.3",
"prosemirror-view": "^1.34.2"
}
}