This repository was archived by the owner on Mar 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.03 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.03 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
{
"name": "text_ed",
"version": "0.1.0",
"private": true,
"dependencies": {
"@draft-js-plugins/image": "^4.1.1",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/animejs": "^3.1.3",
"@types/draft-convert": "^2.1.2",
"@types/draft-js": "^0.11.1",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-draft-wysiwyg": "^1.13.2",
"@types/react-router-dom": "^5.1.7",
"@types/validator": "^13.1.3",
"animateplus": "^2.1.1",
"animejs": "^3.2.1",
"dompurify": "^2.2.8",
"draft-convert": "^2.1.11",
"draft-js": "^0.11.7",
"draft-js-export-html": "^1.4.1",
"draftjs-to-html": "^0.9.1",
"html2canvas": "^1.0.0-rc.7",
"node-sass": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draft-wysiwyg": "^1.14.5",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-webcam": "^5.2.3",
"svg.js": "^2.7.1",
"typescript": "^4.2.4",
"validator": "^13.5.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"start:js": "react-scripts start",
"build:js": "react-scripts build",
"start:eel": "python index.py --develop",
"build:eel": "python -m eel index.py build --icon=logo.ico --noconsole --onefile --name TextEd",
"clean:build": "rm -rf build dist",
"start": "npm-run-all -p start:*",
"build": "npm-run-all clean:build build:*",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}