-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.93 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.93 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
{
"name": "neuron",
"version": "0.1.0",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"build": {
"appId": "com.electron.electron-with-create-react-app",
"directories": {
"buildResources": "public"
}
},
"browserslist": [
"last 1 versions"
],
"scripts": {
"postinstall": "umi generate tmp",
"prettier": "prettier -c --write \"src/**/*\"",
"start": "concurrently \"npm run react-start\" \"wait-on http://localhost:3002 && electron .\"",
"electron":"electron .",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"react-start": "umi dev",
"react-build": "umi build",
"electron-build": "electron-builder",
"release": "npm run react-build && electron-builder --publish=always",
"build": "npm run react-build && npm run electron-build",
"elev": "electron -v && electron -a",
"rebuild": "npm rebuild --runtime=electron --target=11.0.4 --disturl=https://atom.io/download/atom-shell --abi=85",
"lint": "umi g tmp && npm run lint:js && npm run lint:style && npm run lint:prettier",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx ",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src && npm run lint:style",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:prettier": "prettier --check \"src/**/*\" --end-of-line auto",
"lint:style": "stylelint --fix \"src/**/*.less\" --syntax less"
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@reduxjs/toolkit": "^1.5.0",
"@types/node": "^12.19.9",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@udecode/slate-plugins": "^0.71.3",
"@umijs/fabric": "^2.3.1",
"@umijs/hooks": "^1.9.3",
"@umijs/preset-react": "^1.7.8",
"clsx": "^1.1.1",
"codemirror": "^5.59.2",
"cors": "^2.8.5",
"electron-is-dev": "^1.2.0",
"electron-log": "^4.3.1",
"express": "^4.17.1",
"filenamify": "^4.2.0",
"fontsource-roboto": "^3.1.5",
"fs-extra": "^9.0.1",
"immutable": "^4.0.0-rc.12",
"jsonlint-mod": "^1.7.6",
"lodash": "^4.17.20",
"open-graph-scraper": "^4.7.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-grid-layout": "^1.2.0",
"react-resizable": "^1.11.0",
"react-router-dom": "^5.2.0",
"recoil": "^0.1.2",
"robotjs": "^0.6.0",
"short-uuid": "^4.1.0",
"slate": "^0.59.0",
"slate-history": "^0.59.0",
"slate-hyperscript": "^0.59.0",
"slate-react": "^0.59.0",
"source-map-explorer": "^2.5.1",
"styled-components": "^5.2.1",
"tippy.js": "^6.2.7",
"typescript": "^4.0.3",
"umi": "^3.3.2",
"web-vitals": "^0.2.4"
},
"devDependencies": {
"@types/react-grid-layout": "^1.1.1",
"babel-plugin-import": "^1.13.3",
"babel-plugin-styled-components": "^1.12.0",
"concurrently": "^5.3.0",
"customize-cra": "^1.0.0",
"electron": "^11.0.4",
"electron-builder": "^22.9.1",
"prettier": "^2.2.1",
"react-app-rewired": "^2.1.6",
"wait-on": "^5.2.0"
}
}