This repository was archived by the owner on Jul 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.34 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.34 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
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
113
114
115
116
117
118
119
120
121
122
123
{
"name": "gateway",
"version": "0.3.0",
"description": "UI for dega-admin",
"private": true,
"license": "MIT",
"cacheDirectories": [
"node_modules"
],
"dependencies": {
"@ant-design/icons": "^4.2.1",
"@editorjs/editorjs": "^2.18.0",
"@editorjs/header": "^2.5.0",
"@editorjs/list": "^1.5.0",
"@editorjs/paragraph": "^2.7.0",
"@editorjs/quote": "^2.3.0",
"@editorjs/raw": "^2.1.2",
"@editorjs/table": "^1.2.2",
"@monaco-editor/react": "^4.2.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@uppy/aws-s3": "^1.7.2",
"@uppy/core": "^1.14.0",
"@uppy/google-drive": "^1.5.18",
"@uppy/image-editor": "^0.1.8",
"@uppy/react": "^1.10.10",
"@uppy/url": "^1.5.13",
"antd": "^4.3.4",
"axios": "^0.21.1",
"deep-equal": "^2.0.3",
"jest-sonar-reporter": "^2.0.0",
"moment": "^2.26.0",
"monaco-editor": "^0.25.2",
"react": "^16.13.1",
"react-color": "^2.19.3",
"react-dom": "^16.13.1",
"react-monaco-editor": "^0.43.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0"
},
"engines": {
"node": ">=8.9.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"lint-staged": {
"**/*.{js,jsx,yml,yaml,json,css,scss,md}": [
"npm run format",
"git add"
]
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"eject": "react-app-rewired eject",
"format:check": "prettier --check \"**/*.{js,jsx,yml,yaml,json,css,scss,md}\"",
"format": "prettier --write \"**/*.{js,jsx,yml,yaml,json,css,scss,md}\""
},
"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/preset-env": "^7.10.4",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@editorjs/code": "^2.6.0",
"@editorjs/delimiter": "^1.2.0",
"@editorjs/inline-code": "^1.3.1",
"@editorjs/marker": "^1.2.2",
"cz-conventional-changelog": "^3.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"monaco-editor-webpack-plugin": "^4.0.0",
"prettier": "2.0.5",
"react-app-rewired": "^2.1.8",
"react-test-renderer": "^16.13.1",
"redux-mock-store": "^1.5.4",
"semantic-release": "^17.1.1"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}