-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 1.96 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
{
"name": "diffmonster",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.3.18",
"@blueprintjs/core": "^3.28.2",
"@types/classnames": "^2.2.7",
"@types/diff2html": "^0.0.4",
"@types/fuzzaldrin-plus": "^0.6.0",
"@types/highlight.js": "^9.12.3",
"@types/jest": "^24.0.0",
"@types/node": "^10.12.21",
"@types/react": "^17.0.5",
"@types/react-document-title": "^2.0.3",
"@types/react-dom": "^17.0.5",
"@types/react-redux": "^7.0.1",
"@types/react-router": "^4.4.3",
"@types/react-router-dom": "^4.3.1",
"classnames": "^2.2.6",
"diff2html": "^2.3.3",
"firebase": "^7.15.1",
"fuzzaldrin-plus": "^0.6.0",
"highlight.js": "^9.12.0",
"http-link-header": "^0.8.0",
"react": "^17.0.2",
"react-addons-css-transition-group": "^15.6.2",
"react-document-title": "^2.0.3",
"react-dom": "^17.0.2",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-observable": "^1.0.0",
"rxjs": "^6",
"typescript": "^4.2.4"
},
"devDependencies": {
"apollo": "^2.33.2",
"react-scripts": "4.0.3",
"serialize-javascript": "^2.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && node postbuild.js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"graphql-codegen": "apollo client:codegen --target typescript --watch --globalTypesFile ./src/__generated__/globalTypes.ts"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"@typescript-eslint/consistent-type-assertions": "off"
},
"overrides": [
{
"files": [
"config.js"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}