-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "@privyid/ghoulscript-monorepo",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"packages/*",
"playground/*"
],
"scripts": {
"lint": "eslint . --ext .js,.vue,.ts --format pretty",
"fix": "yarn lint --fix",
"test": "yarn workspaces foreach -A --topological-dev run test",
"build": "yarn workspaces foreach -A --topological-dev run build",
"postinstall": "husky"
},
"lint-staged": {
"*.(js|ts|vue)": [
"eslint --fix"
]
},
"devDependencies": {
"@privyid/eslint-config-persona": "1.0.0-rc.7",
"@tsconfig/node20": "20.1.4",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vue/eslint-config-typescript": "13.0.0",
"eslint": "8.57.0",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-formatter-pretty": "5.0.0",
"eslint-plugin-align-assignments": "1.1.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "48.0.1",
"eslint-plugin-varspacing": "1.2.2",
"eslint-plugin-vue": "9.23.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"typescript": "5.6.3"
}
}