-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.77 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
86
87
{
"name": "@graphql-debugger/monorepo",
"version": "0.0.0-alpha.109",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=\"development\" turbo dev --filter '!graphql-debugger' --filter '!@graphql-debugger/landing-page-app' --filter '!@graphql-debugger/landing-page-server' --concurrency=30",
"build": "turbo build",
"release": "cross-env DEBUG=\"@graphql-debugger:*\" node ./packages/utils/build/release.js",
"test:sequential": "pnpm recursive exec -- sh -c 'pnpm run test || (echo \"Tests failed!\" && exit 1)'",
"test": "turbo test",
"clean": "find . -type d \\( -name \"node_modules\" -o -name \"build\" -o -name \".turbo\" -o -name \".next\" \\) -exec rm -rf {} +",
"lint": "eslint .",
"format": "prettier --write .",
"reset-db": "cd ./packages/data-access && npx prisma migrate reset --force"
},
"devDependencies": {
"@babel/core": "7.24.4",
"@babel/preset-env": "7.24.4",
"@babel/preset-typescript": "7.24.1",
"@jest/globals": "29.7.0",
"@jest/types": "29.6.3",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@tsconfig/node18": "18.2.4",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/node": "20.12.7",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/supertest": "6.0.2",
"@types/webpack": "5.28.5",
"@typescript-eslint/eslint-plugin": "7.7.1",
"autoprefixer": "10.4.19",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "12.0.2",
"cross-env": "7.0.3",
"css-loader": "6.10.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-n": "16.4.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.6.0",
"jest": "29.7.0",
"node-polyfill-webpack-plugin": "3.0.0",
"postcss": "8.4.38",
"postcss-loader": "8.1.1",
"prettier": "3.2.5",
"style-loader": "4.0.0",
"supertest": "7.0.0",
"svg-url-loader": "8.0.0",
"tailwindcss": "3.4.3",
"ts-jest": "29.1.2",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"turbo": "1.13.3",
"typescript": "5.4.5",
"url-loader": "4.1.1",
"webpack": "5.91.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"typescript",
"ts-node",
"@tsconfig/*",
"@types/*",
"jest",
"@jest/*",
"supertest",
"prettier"
]
}
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
}
}