-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 3.12 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
{
"name": "st-retrospect-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"relay": "relay-compiler --src ./src --schema ./schema.graphql --language typescript --customScalars.Timestamp=Int --customScalars.MultilingualString=String --customScalars.ObjectId=String --customScalars.GlobalId=ID",
"get-schema": "get-graphql-schema https://api.st-retrospect.dh-center.ru/graphql > schema.graphql",
"get-schema:stage": "get-graphql-schema https://api.stage.st-retrospect.dh-center.ru/graphql > schema.graphql",
"get-schema:local": "get-graphql-schema http://localhost:4000/graphql > schema.graphql",
"lint": "eslint . --ext .js --ext .ts --ext .tsx --fix",
"lint-test": "eslint . --ext .js --ext .ts --ext .tsx --max-warnings 0"
},
"dependencies": {
"@editorjs/delimiter": "^1.2.0",
"@editorjs/editorjs": "2.19.3",
"@editorjs/header": "^2.6.1",
"@editorjs/image": "^2.6.0",
"@editorjs/list": "^1.6.2",
"@editorjs/marker": "^1.2.2",
"@editorjs/paragraph": "^2.8.0",
"@editorjs/quote": "^2.4.0",
"@sentry/react": "^6.2.3",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.6",
"@types/classnames": "^2.2.11",
"@types/d3": "^6.3.0",
"@types/jest": "^26.0.21",
"@types/lodash.throttle": "^4.1.6",
"@types/mapbox-gl": "^1.12.8",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-relay": "^11.0.0",
"@types/react-router-bootstrap": "^0.24.5",
"@types/react-router-dom": "^5.1.7",
"@types/react-tag-autocomplete": "^6.1.0",
"@types/relay-runtime": "^10.1.10",
"@types/styled-components": "^5.1.9",
"babel-plugin-relay": "^11.0.0",
"bootstrap": "^4.6.0",
"classnames": "^2.2.6",
"codex-notifier": "^1.1.2",
"d3": "^6.6.0",
"lodash.throttle": "^4.1.1",
"lvovich": "^1.0.16",
"mapbox-gl": "^1.13.0",
"rc-pagination": "^3.1.6",
"react": "^17.0.1",
"react-bootstrap": "^1.5.2",
"react-dom": "^17.0.1",
"react-dropzone": "^11.3.1",
"react-editor-js": "^1.9.0",
"react-image": "^4.0.3",
"react-relay": "^11.0.0",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-select-search": "^3.0.7",
"react-tag-autocomplete": "^6.1.0",
"relay-commit-mutation-promise": "^1.1.3",
"styled-components": "^5.2.3",
"typescript": "^4.1.2"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-codex": "^1.6.1",
"eslint-plugin-react": "^7.22.0",
"get-graphql-schema": "^2.1.2",
"graphql": "^15.5.0",
"relay-compiler": "^11.0.0",
"relay-compiler-language-typescript": "^13.0.6",
"relay-config": "^11.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}