forked from lukeandersen/react-electron-express-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.98 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
{
"name": "electron-quick-start",
"version": "1.0.0",
"description": "A minimal Electron application",
"main": "electron.js",
"scripts": {
"start": "electron .",
"dev": "concurrently \"webpack --watch\" \"electron .\"",
"build": "rimraf ./public && mkdir public && webpack --progress -p"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/preset-env": "7.12.7",
"@babel/preset-react": "7.12.7",
"babel-loader": "8.2.1",
"babel-preset-es2015": "6.24.1",
"concurrently": "5.3.0",
"copy-webpack-plugin": "6.3.2",
"css-loader": "3.6.0",
"electron": "9.3.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "6.2.0",
"html-webpack-plugin": "4.5.0",
"postcss": "7.0.32",
"postcss-cssnext": "3.1.0",
"postcss-import": "12.0.1",
"postcss-load-config": "2.1.0",
"postcss-loader": "3.0.0",
"postcss-nesting": "7.0.1",
"rimraf": "3.0.2",
"style-loader": "1.2.1",
"url-loader": "4.1.0",
"webpack": "4.43.0",
"webpack-cli": "3.3.12"
},
"dependencies": {
"body-parser": "1.19.0",
"express": "4.17.1",
"morgan": "^1.10.0",
"axios": "^0.21.0",
"classnames": "2.2.6",
"dotenv": "8.2.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.2.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
],
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"postcss": {
"plugins": {
"postcss-import": {},
"postcss-cssnext": {
"browsers": [
"last 2 versions",
"> 5%"
]
},
"postcss-nesting": {}
}
}
}