-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.18 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.18 KB
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
{
"name": "plugins",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"postinstall": "husky install && npx ts-patch install",
"setup": "rm -rf node_modules package-lock.json dist tmp && ns package-manager set npm && npm install",
"start": "nps",
"add": "nx g @nativescript/plugin-tools:add-package",
"config": "nx g @nativescript/plugin-tools:config",
"publish-packages": "nx g @nativescript/plugin-tools:publish",
"sync-packages-with-demos": "nx g @nativescript/plugin-tools:sync-packages-with-demos",
"remove-package": "nx g @nativescript/plugin-tools:remove-package",
"add-demo": "nx g @nativescript/plugin-tools:add-demo"
},
"private": true,
"devDependencies": {
"@nativescript/core": "^9.0.16",
"@nativescript/plugin-tools": "^5.5.3",
"@nativescript/types": "^8.9.1",
"@nativescript/webpack": "^5.0.28",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint-config-prettier": "^9.1.2",
"husky": "^8.0.3",
"nativescript-vue": "~2.9.3",
"nativescript-vue-template-compiler": "~2.9.3",
"postcss-import": "^15.1.0",
"prettier": "^2.8.3",
"typescript": "~5.5.0"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
}
}