This repository has been archived by the owner on Mar 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 3.21 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
{
"name": "editor-client",
"version": "0.0.2",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"connected-react-router": "^6.8.0",
"deep-diff": "^1.0.2",
"interweave": "^12.7.0",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"node-sass": "^4.14.1",
"prosemirror-commands": "^1.1.5",
"prosemirror-example-setup": "^1.1.2",
"prosemirror-model": "^1.13.1",
"prosemirror-schema-list": "^1.1.4",
"prosemirror-state": "^1.3.3",
"prosemirror-view": "^1.17.2",
"react": "^16.13.1",
"react-device-detect": "^1.13.1",
"react-dom": "^16.13.1",
"react-draggable": "^4.4.3",
"react-hotkeys": "^2.0.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.4",
"react-sortable-hoc": "^1.11.0",
"redux": "^4.0.5",
"redux-act": "^1.8.0",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"uuid": "^8.3.2"
},
"scripts": {
"start": "react-scripts start",
"start:localstack": "react-scripts start --localstack",
"build": "react-scripts build",
"test": "react-scripts test --coverage --watchAll=true",
"test:ci": "react-scripts test --coverage --ci",
"eject": "react-scripts eject",
"lint": "eslint --fix src/**/*.ts src/**/*.tsx",
"lint:ci": "eslint src/**/*.ts src/**/*.tsx",
"release": "standard-version",
"playwright": "playwright test"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.15.2",
"@types/classnames": "^2.2.11",
"@types/deep-diff": "^1.0.0",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/moment": "^2.13.0",
"@types/node": "^14.14.21",
"@types/prosemirror-commands": "^1.0.4",
"@types/prosemirror-history": "^1.0.2",
"@types/prosemirror-inputrules": "^1.0.4",
"@types/prosemirror-model": "^1.11.2",
"@types/prosemirror-schema-list": "^1.0.2",
"@types/prosemirror-state": "^1.2.6",
"@types/prosemirror-view": "^1.17.1",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.15",
"@types/react-router-dom": "^5.1.7",
"@types/react-test-renderer": "^16.9.2",
"@types/redux-saga": "^0.10.5",
"@types/uuid": "^8.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.3.1",
"http-proxy-middleware": "^1.0.6",
"prettier": "2.2.1",
"prosemirror-menu": "^1.1.4",
"react-remock": "^0.8.1",
"react-test-renderer": "^16.13.1",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.4",
"standard-version": "^9.1.0",
"typescript": "^3.8.3"
},
"jest": {
"restoreMocks": true,
"clearMocks": true,
"moduleNameMapper": {
"^app/(.*)": "<rootDir>/src/app/$1"
}
}
}