-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "@privateaim/policy-root",
"version": "0.0.0",
"description": "",
"author": {
"name": "Peter Placzek",
"email": "[email protected]",
"url": "https://github.com/tada5hi"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/tada5hi/typescript-template.git"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "npx nx run-many -t build",
"test": "npx nx run-many -t test",
"lint": "eslint ./packages/**/*.{ts,vue}",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"workspaces": [
"packages/*"
],
"keywords": [],
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-swc": "^0.4.0",
"@swc/jest": "^0.2.37",
"@tada5hi/commitlint-config": "^1.2.3",
"@tada5hi/eslint-config-typescript": "^1.2.13",
"@tada5hi/tsconfig": "^0.6.0",
"@types/jest": "^29.5.14",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"nx": "^19.5.4",
"lint-staged": "^15.4.2",
"rollup": "^4.31.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"lint-staged": {
".js": "npm run lint:fix",
"*.ts": "npm run lint:fix"
}
}