-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "@vitron/root",
"version": "2.3.0",
"private": true,
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"workspaces": [
"examples/*",
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/tada5hi/vitron.git"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-swc": "^0.4.0",
"@swc/core": "^1.7.28",
"@tada5hi/commitlint-config": "^1.2.1",
"@tada5hi/eslint-config-vue-typescript": "^1.3.11",
"@tada5hi/tsconfig": "^0.5.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"nx": "^19.8.2",
"rimraf": "^6.0.1",
"rollup": "^4.18.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-ts": "^3.4.5",
"ts-jest": "^29.1.1",
"typescript": "5.6.2",
"workspaces-publish": "^1.4.4"
},
"scripts": {
"build": "npx nx run-many -t build",
"test": "npx nx run-many -t test",
"lint": "eslint --ext .ts ./packages/",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
}
}