-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.03 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
{
"name": "expack",
"version": "1.0.0",
"description": "Expack is the bare-bones Express and Webpack boilerplate with ES6+ babel transpilation, ESLint linting, Hot Module Reloading, and Jest test framework enabled.",
"main": "./src/electron.js",
"scripts": {
"gulp": "gulp",
"postinstall": "electron-builder install-app-deps",
"start": "npm-run-all build --parallel start:*",
"start:ts": "run-p start:ts:*",
"start:ts:main": "webpack --config ./config/webpack.config.js --mode production --watch",
"start:app": "electron .",
"build": "run-s build:*",
"build:clean": "rm -rf ./dist ./build",
"build:ts": "run-p build:ts:*",
"build:ts:main": "gulp build",
"build:ts:express": "cd ./express && npm install",
"build:electron": "run-script-os",
"build:electron:linux": "electron-builder --linux",
"build:electron:win32": "electron-builder --win",
"build:electron:macos": "electron-builder --mac",
"test": "run-s test:*",
"test:jest": "jest"
},
"keywords": [],
"build": {
"appId": "com.uq.neurodesk",
"productName": "Neurodesk Electron App",
"mac": {
"category": "public.app-category.lifestyle"
},
"dmg": {
"icon": false
},
"linux": {
"target": [
"AppImage"
],
"category": "Office"
}
},
"author": "",
"license": "CC0-1.0",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jquery": "^3.5.1",
"lodash": "^4.17.21",
"node": "^15.4.0",
"request": "^2.88.2",
"run-script-os": "^1.1.6",
"strip": "^3.0.0"
},
"engines": {
"node": ">=4.3.2"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"colors": "1.1.2",
"debug": "^4.3.1",
"del": "3.0.0",
"eslint": "^4.19.1",
"eslint-loader": "^2.2.1",
"event-stream": "3.3.4",
"electron": "13.1.2",
"electron-builder": "22.4.1",
"gulp": "4.0.0",
"gulp-concat-css": "3.1.0",
"gulp-eslint": "5.0.0",
"gulp-html-replace": "1.6.2",
"gulp-template": "5.0.0",
"gulp-watch": "5.0.1",
"gulp-webserver": "0.9.1",
"gulp-zip": "4.2.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.4.5",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.3",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.2",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-node-externals": "^1.7.2"
}
}