-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.28 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
{
"name": "fair-journal",
"version": "0.1.0",
"private": true,
"dependencies": {
"@bomdi/codebox": "^2.0.0",
"@editorjs/editorjs": "^2.26.5",
"@editorjs/embed": "^2.5.3",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@fairjournal/file-system": "^1.10.1",
"@mui/icons-material": "^5.16.5",
"@mui/lab": "^5.0.0-alpha.124",
"@mui/material": "^5.16.5",
"@reduxjs/toolkit": "^1.9.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@tonconnect/ui": "^1.0.0-beta.4",
"@tonconnect/ui-react": "^2.0.5",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.21",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"dotenv": "^16.0.3",
"dotenv-webpack": "^8.0.1",
"editorjs-blocks-react-renderer": "^1.3.0",
"editorjs-react-renderer": "^3.5.1",
"he": "^1.2.0",
"html-entities": "^2.4.0",
"jest": "^29.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-editor-js": "^2.1.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.10.0",
"react-scripts": "5.0.1",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"transliteration": "^2.3.5",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"eject": "react-scripts eject",
"lint:check": "eslint \"src/**/*.ts\" && prettier --check \"src/**/*.ts\"",
"check:types": "tsc --project tsconfig.test.json",
"check": "npm run lint:check && npm run check:types",
"deploy": "BUILD_PATH='./temp-build' NODE_OPTIONS=--max_old_space_size=4096 react-scripts build && rm -rf build && mv temp-build build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"testEnvironment": "node"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@editorjs/checklist": "^1.4.0",
"@editorjs/code": "^2.8.0",
"@editorjs/delimiter": "^1.3.0",
"@editorjs/header": "^2.7.0",
"@editorjs/image": "^2.8.1",
"@editorjs/inline-code": "^1.4.0",
"@editorjs/link": "^2.5.0",
"@editorjs/list": "^1.8.0",
"@editorjs/marker": "^1.3.0",
"@editorjs/paragraph": "^2.9.0",
"@editorjs/quote": "^2.5.0",
"@editorjs/raw": "^2.4.0",
"@editorjs/simple-image": "^1.5.1",
"@editorjs/table": "^2.2.1",
"@editorjs/warning": "^1.3.0",
"@types/he": "^1.2.0",
"@types/react-redux": "^7.1.25",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.1"
}
}