forked from sitepoint-editors/memesearchapp-nodegui-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 663 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 663 Bytes
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
{
"name": "nodegui-starter",
"version": "1.0.0",
"main": "index.js",
"author": "Atul R <atulanand94@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack -p",
"start": "webpack && qode ./dist/index.js",
"debug": "webpack && qode --inspect ./dist/index.js"
},
"dependencies": {
"@nodegui/nodegui": "^0.13.3",
"axios": "^0.19.2"
},
"devDependencies": {
"@nodegui/packer": "^1.1.2",
"@types/node": "^13.1.4",
"file-loader": "^5.0.2",
"native-addon-loader": "^2.0.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}