-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
146 lines (146 loc) · 3.99 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "alinka",
"version": "0.1.0",
"private": true,
"author": {
"name": "Code for Poznan",
"email": "[email protected]",
"url": "https://codeforpoznan.pl/"
},
"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": "cross-env MODE=dev webpack-dev-server --mode development --progress",
"electron:dev": "cross-env MODE=dev electron .",
"start": "concurrently \"cross-env BROWSER=none npm run webpack:dev\" \"wait-on http://localhost:9000 && npm run electron:dev\"",
"build": "webpack --mode production && electron-builder --windows --linux",
"test": "cross-env MODE=dev jest",
"rebuild": "electron-rebuild -f -w sqlite3",
"apply_schools": "node src/test/fixtures/apply_schools.js",
"apply_fixtures": "npm run apply_schools",
"gen_documents": "node src/docx/generateTestDocument.js"
},
"dependencies": {
"@babel/runtime": "^7.10.3",
"file-system": "^2.2.2",
"final-form": "^4.20.0",
"final-form-arrays": "^3.0.2",
"jszip": "3.2.2",
"nunjucks": "^3.2.1",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-final-form": "^6.5.0",
"react-final-form-arrays": "^3.1.1",
"react-flexy-table": "^1.3.6",
"react-router-dom": "^5.2.0",
"sequelize": "5.21.2",
"sqlite3": "4.1.0"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.1",
"@loadable/component": "^5.12.0",
"@svgr/webpack": "^4.3.3",
"@testing-library/react": "^9.5.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"cross-env": "^6.0.3",
"css-loader": "^3.6.0",
"electron": "^3.0.11",
"electron-builder": "^20.38.3",
"electron-devtools-installer": "^2.2.4",
"electron-react-devtools": "^0.5.3",
"electron-rebuild": "1.8.6",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-jest": "23.0.2",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.13.0",
"faker": "^4.1.0",
"file-loader": "^4.3.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"lodash": "^4.17.15",
"node-sass": "^4.14.1",
"prettier": "1.17.1",
"react-test-renderer": "16.8.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^2.3.0",
"wait-on": "^3.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"build": {
"productName": "Alinka",
"appId": "com.alinka.app",
"asar": true,
"win": {
"target": {
"target": "NSIS",
"arch": [
"x64",
"ia32"
]
},
"icon": "./assets/icon.png"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
},
"linux": {
"target": {
"target": "deb",
"arch": [
"x64",
"ia32"
]
},
"icon": "./assets/icon.png"
},
"directories": {
"buildResources": "build",
"output": "dist"
},
"files": [
"package.json",
"build/",
"assets/",
"src/docx/",
"src/utils/",
"main.js",
"node_modules/"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all",
"since 2017-06"
],
"jest": {
"testEnvironment": "node"
}
}