-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.64 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
{
"name": "graphiql-deployment",
"version": "1.0.0",
"engines": {
"node": ">=16.17",
"npm": ">=3.0"
},
"packageManager": "yarn@4.5.1",
"private": true,
"dependencies": {
"graphiql": "^3.7.1",
"graphql": "^16.9.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"lint": "eslint src",
"lint:fix": "eslint --fix ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@vitejs/plugin-react": "^4.3.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-relay": "^18.1.0",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.3.0",
"graphql-ws": "^5.16.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.5"
}
}