-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.33 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:server": "pnpm -C apps/server build",
"build:web": "pnpm -C apps/web build",
"start:server": "pnpm -C apps/server start",
"start:web": "pnpm -C apps/web start",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"es": "node -r esbuild-register",
"w": "pnpm es webpackx.ts",
"schema": "DEBUG=true yarn es ./scripts/updateSchema.ts",
"test": "jest --runInBand --forceExit",
"lint:staged": "turbo run lint-staged",
"prepare": "husky install",
"relay": "node ./scripts/generateArtifactDirectory.js && turbo run relay:web --parallel",
"relay:web": "node ./scripts/generateArtifactDirectory.js && yarn workspace @gymang/web relay"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn prettier",
"eslint --fix"
],
"*.yml": [
"prettier --write --single-quote"
]
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.19",
"@types/bcryptjs": "^2.4.4",
"@types/jest": "^29.5.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.62.0",
"esbuild-jest": "^0.5.0",
"eslint": "^8.49.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest-environment-node": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.2.2",
"mockdate": "^3.0.5",
"prettier": "^3.0.3",
"pretty-format": "^29.6.3",
"swagger-jsdoc": "^6.2.8",
"tsconfig": "workspace:*",
"turbo": "1.2.3",
"uuid": "^9.0.0",
"webpack-node-externals": "^3.0.0"
},
"name": "gymang",
"dependencies": {
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"esbuild": "^0.19.5",
"esbuild-register": "^3.5.0",
"graphql": "^16.8.0",
"hygen": "6.2.11",
"i18next": "^23.5.1",
"jest": "^29.7.0",
"jest-junit": "^15.0.0",
"jest-preview": "^0.3.1",
"jsdom": "^22.1.0",
"lucide-react": "^0.277.0",
"mongoose": "^7.4.3",
"util": "^0.12.5"
},
"engines": {
"pnpm": ">=8.6.5",
"node": "20.x"
}
}