-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
82 lines (82 loc) · 2.98 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
73
74
75
76
77
78
79
80
81
82
{
"name": "dito",
"private": true,
"type": "module",
"description": "Dito.js is a declarative and modern web framework with a focus on API driven development, based on Koa.js, Objection.js and Vue.js",
"repository": "https://github.com/ditojs/dito",
"author": "Jürg Lehni <juerg@scratchdisk.com> (http://scratchdisk.com)",
"license": "MIT",
"scripts": {
"foreach": "yarn workspaces foreach --all --parallel --interlaced --verbose --exclude dito",
"clean": "yarn run foreach run clean",
"build": "yarn run foreach --topological run build",
"watch": "yarn run foreach --jobs 2 run watch",
"prepare": "yarn lint",
"version": "yarn install && git stage yarn.lock",
"postinstall": "husky install",
"test": "vitest",
"eslint": "cross-env NODE_ENV=production eslint --ext .js,.ts,.vue packages/*/src packages/*/types",
"eslint:fix": "yarn run eslint --fix",
"stylelint": "stylelint packages/*/src/**/*.{vue,scss}",
"stylelint:fix": "yarn run stylelint --fix",
"penere": "penere packages/*/{src,types}/**/*.{js,ts,pug,vue} --check",
"penere:fix": "yarn run penere --write",
"lint": "concurrently yarn:eslint yarn:penere yarn:stylelint",
"lint:fix": "yarn run eslint:fix && yarn run penere:fix && yarn run stylelint:fix",
"link:objection": "yarn link ../objection --all --relative --private",
"link:knex": "yarn link ../knex --all --relative --private",
"link:all": "yarn link:objection && yarn link:knex"
},
"lint-staged": {
"packages/**/src/**/*.{js,ts}": [
"cross-env NODE_ENV=production eslint --max-warnings 0"
],
"packages/**/src/**/*.vue": [
"cross-env NODE_ENV=production eslint --max-warnings 0",
"stylelint"
],
"packages/**/src/**/*.scss": [
"stylelint"
]
},
"engines": {
"node": ">= 18.0.0",
"yarn": ">= 3.2.2"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@prettier/plugin-pug": "^3.2.0",
"@typescript-eslint/parser": "^8.22.0",
"@volar/language-service": "^2.4.11",
"@vue/language-plugin-pug": "^2.2.0",
"c8": "^10.1.3",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-vue-pug": "^0.6.2",
"full-icu": "^1.5.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.4.3",
"prettier": "npm:penere@^3.2.5",
"stylelint": "^16.14.1",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-prettier": "^5.0.3",
"stylelint-scss": "^6.10.1",
"vitest": "^3.0.4",
"vue-eslint-parser": "^9.4.3",
"vue-eslint-parser-template-tokenizer-pug": "^0.4.11"
},
"packageManager": "yarn@4.5.1"
}