-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.94 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
{
"name": "electron-react-typescript-es6",
"version": "0.1.0",
"private": true,
"main": "public/main.js",
"scripts": {
"start": "yarn build:main && electron .",
"start:inspect": "yarn build:main && electron --inspect=5858 .",
"start:inspect-brk": "yarn build:main && electron --inspect-brk=5858 .",
"develop": "webpack-dev-server --host 0.0.0.0 --hot --config config/webpack.config.js --config-name renderer",
"build:main": "webpack --config config/webpack.config.js --config-name main"
},
"dependencies": {
"identity-obj-proxy": "3.0.0",
"case-sensitive-paths-webpack-plugin": "2.2.0",
"fs-extra": "7.0.1",
"lodash": "^4.17.13",
"moment": "^2.24.0",
"react": "^16.8.6",
"react-app-polyfill": "^1.0.1",
"react-dev-utils": "^9.0.1",
"react-dom": "^16.8.6",
"resolve": "1.10.0",
"semver": "6.0.0",
"styled-components": "^4.3.1",
"ts-pnp": "1.1.2",
"typescript": "^3.5.2",
"workbox-webpack-plugin": "4.2.0"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/preset-react": "^7.0.0",
"@svgr/webpack": "4.1.0",
"@types/codemirror": "^0.0.75",
"@types/dompurify": "^0.0.33",
"@types/electron-load-devtool": "^1.0.1",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.135",
"@types/nedb": "^1.8.7",
"@types/node": "^12.0.8",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.16",
"@typescript-eslint/eslint-plugin": "1.6.0",
"@typescript-eslint/parser": "1.6.0",
"babel-eslint": "10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "8.0.5",
"babel-plugin-named-asset-import": "^0.3.2",
"babel-preset-react-app": "^9.0.0",
"css-loader": "2.1.1",
"dotenv": "6.2.0",
"dotenv-expand": "4.2.0",
"electron": "^5.0.6",
"electron-debug": "^3.0.0",
"electron-load-devtool": "^1.2.0",
"electron-rebuild": "^1.8.5",
"eslint": "^5.16.0",
"eslint-config-react-app": "^4.0.1",
"eslint-loader": "2.1.2",
"eslint-plugin-flowtype": "2.50.1",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "^1.5.0",
"file-loader": "3.0.1",
"html-webpack-plugin": "4.0.0-beta.5",
"optimize-css-assets-webpack-plugin": "5.0.1",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"postcss-normalize": "7.0.1",
"postcss-preset-env": "6.6.0",
"postcss-safe-parser": "4.0.1",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"ts-loader": "^6.0.4",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"terser-webpack-plugin": "1.2.3",
"url-loader": "1.1.2",
"webpack": "4.29.6",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2",
"webpack-manifest-plugin": "2.0.4"
},
"eslintConfig": {
"extends": "react-app"
}
}