forked from Escape-Technologies/graphql-security-academy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.36 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"scripts": {
"build": "yarn workspaces foreach --all -piv --topological-dev run build",
"dev": "yarn workspaces foreach --all -piv run dev",
"format": "yarn prettier -wu '**/*' --ignore-path .lintignore",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:stylelint",
"lint:eslint": "eslint --ignore-path .lintignore $INIT_CWD",
"lint:prettier": "prettier --check --ignore-unknown --ignore-path .lintignore $INIT_CWD",
"lint:stylelint": "stylelint --ignore-path .lintignore $INIT_CWD",
"postinstall": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.33.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"postcss-html": "^1.5.0",
"prettier": "^3.0.3",
"prettier-plugin-jsdoc": "^1.0.1",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-pkg": "^0.18.0",
"prettier-plugin-svelte": "^3.0.3",
"stylelint": "^15.10.3",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard-scss": "^10.0.0",
"svelte": "^4.2.0"
},
"volta": {
"node": "18.17.0",
"yarn": "1.22.19"
}
}