-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.08 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
{
"name": "blueprint-todo-nodejs-vue",
"private": true,
"type": "module",
"engines": {
"node": ">= 20.0.0",
"npm": ">= 10.0.0"
},
"scripts": {
"common-eslint": "eslint --cache --cache-location node_modules/.cache/.eslintcache",
"common-prettier": "prettier \"**/*.{htm,html,json,md,markdown,yml,yaml,css,scss}\" --cache",
"common-sequential": "concurrently --raw --max-processes 1",
"fix": "npm run common-sequential -- npm:fix-*",
"fix-eslint": "npm run common-eslint -- --fix",
"fix-prettier": "npm run common-prettier -- --write",
"lint": "npm run common-sequential -- npm:lint-*",
"lint-eslint": "npm run common-eslint",
"lint-prettier": "npm run common-prettier -- --check"
},
"author": "Noop Inc <[email protected]>",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"concurrently": "^8.2.2",
"eslint": "^9.5.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-vue": "^9.26.0",
"prettier": "^3.3.2",
"vue-eslint-parser": "^9.4.3"
},
"overrides": {
"eslint": "$eslint"
}
}