This repository was archived by the owner on Jun 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.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
{
"name": "react-app-template",
"version": "3.3.0",
"main": "./src/electron/index.js",
"license": "MIT",
"author": {
"name": "Saurer",
"url": "https://github.com/Saurer"
},
"scripts": {
"dev": "next src/app",
"build": "next build src/app && next export src/app -o build",
"start": "next start src/app",
"export": "yarn build && next export",
"start-desktop": "electron .",
"package": "yarn run build && build --dir",
"release": "yarn run build && build",
"test": "jest"
},
"build": {
"asar": true,
"directories": {
"output": "releases"
},
"files": [
"./src/electron/**/*",
{
"from": "build",
"to": "src/app/out"
}
]
},
"dependencies": {
"electron-is-dev": "^1.1.0",
"electron-next": "^3.1.5"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@emotion/babel-preset-css-prop": "^10.0.23",
"@emotion/core": "^10.0.22",
"@types/jest": "^24.0.22",
"@types/react": "^16.9.11",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"electron": "^7.1.1",
"electron-builder": "^22.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"jest": "^24.9.0",
"mobx": "^5.15.2",
"mobx-react-lite": "^1.5.2",
"mobx-state-tree": "^3.15.0",
"next": "^9.2.1",
"prettier": "^1.19.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"ts-jest": "^24.1.0",
"typescript": "^3.7.5"
}
}