-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.29 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
{
"name": "@nativescript/plugin-tools-source",
"version": "5.3.0",
"license": "MIT",
"scripts": {
"clean": "npx rimraf package-lock.json yarn.lock node_modules && yarn",
"nx": "nx",
"start": "nx serve",
"build": "nx build plugin-tools",
"test": "nx test plugin-tools",
"lint": "nx workspace-lint && nx lint plugin-tools",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"postinstall": "husky",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"reset.changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"contributors": "githubcontrib --owner NativeScript --repo $(basename $(pwd)) --cols 6 --showlogin true --sortOrder desc | pbcopy"
},
"private": true,
"devDependencies": {
"@nx/devkit": "19.5.7",
"@nx/workspace": "19.5.7",
"@nx/js": "19.5.7",
"@nx/plugin": "19.5.7",
"@nx/jest": "19.5.7",
"@nx/node": "19.5.7",
"@nx/eslint-plugin": "19.5.7",
"@swc-node/register": "1.10.9",
"@swc/core": "1.7.10",
"@types/jest": "~29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"conventional-changelog-cli": "^5.0.0",
"dotenv": "~16.4.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"github-contributors-list": "~1.2.3",
"husky": "~9.0.0",
"jest": "29.7.0",
"nx-cloud": "19.0.0",
"nx": "19.5.7",
"parse-version-string": "^1.0.1",
"prettier": "^3.3.0",
"rxjs": "^7.8.1",
"semver": "^7.5.4",
"ts-jest": "29.2.4",
"ts-node": "^10.9.0",
"tslib": "^2.0.0",
"typescript": "5.5.4",
"@nx/eslint": "19.5.7"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
}
}