forked from noodle-run/noodle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.35 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
{
"name": "noodle",
"version": "0.1.0",
"description": "Rethinking Student Productivity",
"license": "AGPL-3.0",
"author": "Ahmed Elsakaan",
"type": "module",
"scripts": {
"build": "pnpm nx run-many -t build",
"build-storybook": "pnpm nx run-many -t build-storybook",
"build:pkgs": "pnpm nx run-many -t build --exclude web",
"clean": "pnpm clean:bundles && del pnpm-lock.yaml **/node_modules && pnpm install",
"clean:bundles": "del **/coverage **/storybook-static **/tsconfig.tsbuildinfo **/dist **/.next **/playwright-report **/test-results",
"dev": "pnpm nx run-many -t dev --parallel=99 --output-style=stream",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"postinstall": "prisma generate",
"lint": "pnpm nx run-many -t lint",
"lint:fix": "pnpm nx run-many -t lint:fix",
"prepare": "husky install",
"start": "pnpm nx run-many -t start --parallel=99",
"storybook": "pnpm nx storybook storybook",
"test": "pnpm nx run-many -t test",
"test:coverage": "pnpm nx run-many -t test:coverage --output-style=stream",
"test:ui": "pnpm nx run-many -t test:ui --parallel=99 --output-style=stream",
"test:watch": "pnpm nx run-many -t test:watch --parallel=99 --output-style=stream",
"typecheck": "pnpm nx run-many -t typecheck"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@noodle/tsconfig": "workspace:^",
"@types/eslint": "^8.44.0",
"@types/node": "^20.4.1",
"@types/prettier": "^2.7.3",
"del-cli": "^5.0.0",
"eslint": "^8.44.0",
"eslint-config-noodle": "workspace:^",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"nx": "16.3.2",
"nx-cloud": "16.0.5",
"prettier": "^2.8.8",
"prettier-plugin-jsdoc": "^0.4.2",
"prettier-plugin-packagejson": "^2.4.4",
"prettier-plugin-tailwindcss": "^0.3.0",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=v18.15.0",
"pnpm": ">=8.6.6"
},
"volta": {
"node": "18.15.0",
"pnpm": "8.6.6"
},
"pnpm": {
"patchedDependencies": {
"@types/[email protected]": "patches/@[email protected]"
}
},
"prisma": {
"schema": "packages/db/prisma/schema.prisma"
}
}