-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 880 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 880 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
28
29
30
31
{
"name": "nodegui-system-utility-library",
"version": "1.0.0",
"main": "index.js",
"author": "Siegfried Grimbeek <siegfried.grimbeek@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack -p",
"start": "webpack && qode ./dist/index.js",
"debug": "webpack && qode --inspect ./dist/index.js",
"start:watch": "nodemon -e js,ts,tsx --ignore dist/ --ignore node_modules/ --exec npm start"
},
"dependencies": {
"@nodegui/nodegui": "^0.1.9",
"@nodegui/react-nodegui": "^0.1.9",
"node-os-utils": "^1.0.7",
"react": "^16.9.0"
},
"devDependencies": {
"nodemon": "latest",
"@types/react": "^16.8.23",
"@types/node": "^12.6.8",
"file-loader": "^4.2.0",
"node-loader": "^0.6.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6"
}
}