-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "towan",
"productName": "Towan",
"version": "0.1.1",
"description": "Towan Client",
"main": "src/main.js",
"scripts": {
"start": "ENV=development electron-forge start",
"test": "echo 'No test !' && exit 0",
"package": "ENV=production electron-forge package",
"make": "ENV=production electron-forge make"
},
"author": "Lola <me@lola.ninja>",
"license": "WTFPL",
"dependencies": {
"axios": "^0.15.3",
"babel-polyfill": "^6.23.0",
"bootstrap": "^4.0.0-alpha.6",
"classnames": "^2.2.5",
"electron-compile": "^6.3.0",
"electron-config": "^0.2.1",
"font-awesome": "^4.7.0",
"mobx": "^2.6.0",
"mobx-react": "^3.5.8",
"moment": "^2.18.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^2.8.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.3.3",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.22.0",
"electron-prebuilt-compile": "1.6.2"
},
"devEngines": {
"node": ">=6.x",
"npm": ">=3.x"
},
"standard": {
"parser": "babel-eslint"
},
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb"
]
},
"electronPackagerConfig": {
"asar": true,
"icon": "./src/assets/icons",
"overwrite": true
},
"electronWinstallerConfig": {
"name": "Towan"
},
"electronInstallerDebian": {
"icon": "./src/assets/icons/appicon_128x128.png",
"homepage": "https://github.com/passWallet/Towant-client"
},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "passWallet",
"name": "Towant-client"
},
"windowsStoreConfig": {
"packageName": "Towan"
}
}
}
}