This repository has been archived by the owner on Jul 23, 2020. It is now read-only.
generated from Saurer/react-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.07 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
{
"name": "react-localstorage-chat",
"version": "1.0.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.4.5",
"@emotion/babel-preset-css-prop": "^10.0.14",
"@emotion/core": "^10.0.16",
"@types/classnames": "^2.2.9",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.22",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"@zeit/next-css": "^1.0.1",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"electron": "^5.0.5",
"electron-builder": "^20.44.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.1.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"jest": "^24.8.0",
"mobx": "^5.13.0",
"mobx-react-lite": "^1.4.1",
"mobx-state-tree": "^3.14.1",
"next": "^9.0.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
}
}