forked from CodeForPoznan/alinka-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.17 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": "alinka",
"version": "0.1.0",
"private": true,
"author": "Code for Poznan",
"description": "Aplication for Supporting Center for Children",
"main": "main.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeForPoznan/alinka-electron/issues"
},
"homepage": "https://github.com/CodeForPoznan/alinka-electron#readme",
"scripts": {
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix",
"webpack:dev": "MODE=dev webpack-dev-server --mode development --progress",
"electron:dev": "MODE=dev electron .",
"start": "concurrently \"BROWSER=none npm run webpack:dev\" \"wait-on http://localhost:9000 && npm run electron:dev\"",
"build": "webpack --mode production && electron-builder --windows"
},
"dependencies": {
"path": "^0.12.7",
"docx": "^4.7.1",
"file-system": "^2.2.2",
"react": "16.8.6",
"react-dom": "16.8.6"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "10.0.1",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^4.1.0",
"css-loader": "^2.0.0",
"electron": "^3.0.11",
"electron-builder": "^20.38.3",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.13.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.12.0",
"prettier": "1.17.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"wait-on": "^3.2.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.3.1"
},
"build": {
"productName": "Alinka",
"appId": "com.alinka.app",
"asar": true,
"win": {
"target": "NSIS",
"icon": "./assets/icon.png"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
},
"directories": {
"buildResources": "build",
"output": "dist"
},
"files": [
"**/*",
"build/**/*",
"assets/**/*",
"!dist/**/*",
"!src/**/*",
"node_modules/**/*"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}