-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 1.07 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
{
"name": "org",
"version": "0.0.1",
"private": true,
"description": "Rethinking Student Productivity",
"homepage": "https://org.run",
"bugs": "https://github.com/org-run/org/issues",
"repository": "https://github.com/org-run/org",
"license": "AGPL-3.0-or-later",
"author": "org RUN LTD <[email protected]>",
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"scripts": {
"format": "prettier \"**/*\" --ignore-unknown --list-different",
"format:fix": "prettier \"**/*\" --ignore-unknown --list-different --write",
"lint:md": "markdownlint \"**/*.md\" --dot --ignore node_modules --ignore .changeset",
"spellcheck": "cspell \"**\" --gitignore --dot --no-progress --cache --unique"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@org/tsconfig": "workspace:^",
"@types/bun": "^1.1.11",
"cspell": "^8.15.1",
"markdownlint": "^0.35.0",
"markdownlint-cli": "^0.42.0",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3",
"typescript": "^5.6.3"
}
}