-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.65 KB
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
{
"name": "react-relay-example",
"version": "2.0.0",
"private": true,
"dependencies": {
"babel-plugin-relay": "^20.1.1",
"bootstrap": "^5.1.3",
"react": "^19.0.0",
"react-bootstrap": "^2.4.0",
"react-dom": "^19.0.0",
"react-relay": "^20.1.1",
"react-router-dom": "^7.4.1",
"react-scripts": "5.0.1",
"relay-runtime": "^20.1.1"
},
"scripts": {
"start": "DISABLE_ESLINT_PLUGIN=true react-scripts start",
"start-win": "react-scripts start",
"build": "DISABLE_ESLINT_PLUGIN=true react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"relay": "relay-compiler $@",
"lint": "eslint .",
"prettier:check": "prettier --check ./src",
"prettier:write": "prettier --write ./src"
},
"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/core": "^7.4.5",
"@eslint/js": "^9.39.2",
"@types/node": "^24.10.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react-relay": "^18.2.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"graphql": "^16.10.0",
"prettier": "^3.8.1",
"relay-compiler": "^20.1.1",
"relay-compiler-language-typescript": "^15.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.54.0"
},
"relay": {
"src": "./src/",
"schema": "./schema.graphql",
"language": "typescript"
},
"packageManager": "yarn@4.12.0"
}