-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.65 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": "electrate",
"version": "1.0.0",
"description": "A minimal Electron application",
"main": "app/main.js",
"scripts": {
"postinstall": "install-app-deps",
"build": "gulp build",
"start": "gulp",
"test": "gulp test",
"release": "gulp release"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"electron": "~5.0.1",
"electron-builder": "^20.39.0",
"electron-react-devtools": "^0.5.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-livereload": "^4.0.1",
"jest": "^24.8.0",
"react-test-renderer": "^16.8.6"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/runtime": "^7.6.3",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"electron-forge": "^5.2.4",
"electron-is-dev": "^1.1.0",
"global": "^4.4.0",
"moment": "^2.24.0",
"pouchdb": "^7.1.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"regenerator-runtime": "^0.13.3"
},
"build": {
"appId": "com.karmadust.electrate",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"publish": null
}
}