-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.88 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
{
"name": "@dnpm-dip/root",
"version": "1.27.0",
"private": true,
"author": {
"name": "Peter Placzek",
"email": "peter.placzek1996@gmail.com",
"url": "https://github.com/tada5hi"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/KohlbacherLab/dnpm-dip.git"
},
"bugs": {
"url": "https://github.com/KohlbacherLab/dnpm-dip/issues"
},
"homepage": "https://github.com/KohlbacherLab/dnpm-dip#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-swc": "^0.4.0",
"@rollup/plugin-terser": "^0.4.4",
"@swc/core": "^1.7.35",
"@swc/jest": "^0.2.36",
"@tada5hi/commitlint-config": "^1.2.2",
"@tada5hi/eslint-config-vue-typescript": "^1.3.12",
"@tada5hi/tsconfig": "^0.5.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.5",
"@vitejs/plugin-vue": "^5.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"jest": "^29.6.4",
"lint-staged": "^15.2.7",
"nx": "^20.0.0",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-postcss": "^4.0.2",
"smob": "^1.5.0",
"typescript": "5.6.2",
"workspaces-publish": "^1.4.4"
},
"scripts": {
"dev": "npm run dev --workspace=packages/portal",
"build": "npx nx run-many -t build",
"test": "npx nx run-many -t test",
"lint": "npx eslint packages/",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.vue": "npm run lint:fix",
"*.js": "npm run lint:fix",
"*.ts": "npm run lint:fix"
}
}