-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 2.46 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
{
"name": "highlighting",
"version": "0.1.0",
"homepage": "./",
"author": {
"name": "Highlighting"
},
"private": true,
"dependencies": {
"@ant-design/icons": "^4.5.0",
"@arction/lcjs": "^3.4.0",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.0",
"@mui/material": "^5.5.0",
"@mui/styled-engine-sc": "^5.4.2",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.6.3",
"antd": "^4.12.2",
"axios": "^0.26.0",
"classnames": "^2.3.1",
"cors": "^2.8.5",
"craco-less": "^1.17.1",
"electron-load-balancer": "^3.0.0",
"electron-log": "^4.3.2",
"express": "^4.17.1",
"python-shell": "^2.0.3",
"react": "^17.0.1",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.1",
"react-google-login": "^5.2.2",
"react-icons": "^4.3.1",
"react-kakao-login": "^2.1.0",
"react-player": "^2.9.0",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.2",
"react-share": "^4.4.0",
"react-spinners": "^0.11.0",
"recharts": "^2.0.6",
"sass": "^1.49.9",
"styled-components": "^5.3.3",
"video.js": "^7.11.4",
"web-vitals": "^1.1.0"
},
"scripts": {
"react-start": "set BROWSER=NONE && react-scripts start",
"electron-start": "set DEV=1 && electron .",
"react-build": "react-scripts build",
"electron-build-win": "electron-builder --win portable -c.extraMetadata.main=build/electron.js",
"build-win": "npm run react-build && npm run electron-build-win",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"main": "public/electron.js",
"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": {
"concurrently": "^5.3.0",
"electron": "^11.2.2",
"electron-builder": "^22.14.13",
"prettier": "2.2.1",
"wait-on": "^5.2.1"
},
"build": {
"appId": "Highlighting",
"asar": false,
"win": {
"target": [
"portable"
]
},
"files": [
"background_tasks/**/*",
"build/**/*",
"python/**/*",
"public/*",
"node_modules/**/*",
"scripts/*"
],
"extends": null
}
}