-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.16 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "gaea",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "3.12.2",
"@auspices/eos": "5.0.8",
"@seznam/compose-react-refs": "1.0.6",
"@stripe/react-stripe-js": "1.16.5",
"@stripe/stripe-js": "1.54.2",
"@styled-system/theme-get": "5.1.2",
"axios": "0.29.0",
"fuse.js": "6.6.2",
"graphql": "16.9.0",
"graphql-tag": "2.12.6",
"jwt-decode": "3.1.2",
"qs": "6.13.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-dropzone": "11.7.1",
"react-helmet": "6.1.0",
"react-intersection-observer": "8.34.0",
"react-router": "6.28.0",
"react-router-dom": "6.28.0",
"react-scripts": "5.0.1",
"scroll-into-view-if-needed": "2.2.31",
"styled-components": "5.3.11",
"styled-system": "5.1.5",
"use-debounce": "7.0.1",
"use-keyboard-list-navigation": "2.4.2"
},
"resolutions": {
"@types/react": "18.3.16",
"graphql": "16.9.0"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint src --cache --cache-location '.eslintcache/eslint/' --ext ts,tsx --ignore-pattern 'build'",
"start:local": "REACT_APP_GRAPHQL_ENDPOINT=http://localhost:5001/graphql react-scripts start",
"start:prod": "REACT_APP_GRAPHQL_ENDPOINT=https://atlas.auspic.es/graphql react-scripts start",
"start": "GENERATE_SOURCEMAP=false yarn start:prod",
"test": "react-scripts test",
"unlink-all": "yalc remove --all && yarn --check-files",
"gql:codegen": "graphql-codegen --config codegen.yml"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript"
],
"rules": {
"sort-imports": [
"warn",
{
"ignoreCase": true,
"ignoreDeclarationSort": true,
"ignoreMemberSort": false
}
],
"@typescript-eslint/no-unused-vars": [
"error"
]
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"prettier": {
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 80
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add",
"yarn lint"
]
},
"devDependencies": {
"@graphql-codegen/cli": "2.16.5",
"@graphql-codegen/fragment-matcher": "3.3.3",
"@graphql-codegen/introspection": "2.2.3",
"@graphql-codegen/typescript": "2.8.8",
"@graphql-codegen/typescript-operations": "2.5.13",
"@types/jest": "28.1.8",
"@types/jwt-decode": "3.1.0",
"@types/node": "18.19.68",
"@types/qs": "6.9.17",
"@types/react": "18.3.16",
"@types/react-dom": "18.3.5",
"@types/react-helmet": "6.1.11",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/styled-components": "5.1.34",
"@types/styled-system": "5.1.23",
"@types/styled-system__theme-get": "5.0.4",
"eslint-plugin-import": "2.26.0",
"husky": "5.2.0",
"lint-staged": "10.5.4",
"prettier": "2.8.8",
"typescript": "4.9.5"
}
}