You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Translation/package.json

24 lines
593 B

{
5 years ago
"name": "react-nodegui-starter",
"version": "1.0.0",
"main": "index.js",
"author": "Atul R <atulanand94@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"start:watch": "nodemon -e js,ts,tsx --ignore dist/ --ignore node_modules/ --exec yarn start",
5 years ago
"start": "tsc && qode ./dist/index.js"
},
"dependencies": {
"@nodegui/nodegui": "^0.1.3",
5 years ago
"@nodegui/react-nodegui": "^0.1.1",
"react": "^16.9.0"
},
"devDependencies": {
"nodemon": "latest",
5 years ago
"@types/node": "^12.6.8",
"@types/react": "^16.8.23",
"typescript": "^3.5.3"
}
}