-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.44 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
83
84
85
{
"name": "@gqlpt/monorepo",
"version": "0.0.0-alpha.30",
"packageManager": "[email protected]",
"scripts": {
"test": "turbo test",
"dev": "cross-env turbo dev --filter \"@gqlpt/backend\"",
"build": "turbo build",
"clean": "find . -type d \\( -name \"node_modules\" -o -name \"build\" -o -name \".turbo\" -o -name \"dist\" -o -name \".docusaurus\" \\) -exec rm -rf {} +",
"lint": "eslint .",
"format": "prettier --write .",
"release": "node ./packages/utils/build/release.js"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.4",
"@babel/preset-typescript": "7.24.7",
"@jest/globals": "29.7.0",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@tsconfig/node18": "18.2.4",
"@types/express": "5.0.0",
"@types/jest": "29.5.12",
"@types/node": "22.4.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/supertest": "6.0.2",
"@types/webpack": "5.28.5",
"@typescript-eslint/eslint-plugin": "8.12.2",
"autoprefixer": "10.4.20",
"clean-webpack-plugin": "4.0.0",
"compression-webpack-plugin": "11.1.0",
"copy-webpack-plugin": "12.0.2",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.13.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-react-hooks": "4.6.2",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.6.3",
"jest": "29.7.0",
"node-polyfill-webpack-plugin": "4.0.0",
"postcss": "8.4.41",
"postcss-loader": "8.1.1",
"prettier": "3.3.3",
"style-loader": "4.0.0",
"supertest": "7.0.0",
"svg-url-loader": "8.0.0",
"tailwindcss": "3.4.10",
"terser-webpack-plugin": "5.3.10",
"ts-jest": "29.2.4",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"turbo": "2.2.3",
"typescript": "5.6.3",
"url-loader": "4.1.1",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"typescript",
"ts-node",
"@tsconfig/*",
"@types/*",
"jest",
"@jest/*",
"supertest",
"prettier"
]
}
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
}
}