generated from bitwarden/template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.26 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
83
84
85
86
87
{
"name": "@bitwarden/test-the-web",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/bitwarden/test-the-web.git"
},
"author": "Bitwarden Inc. <[email protected]> (https://bitwarden.com)",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/bitwarden/test-the-web/issues"
},
"private": true,
"scripts": {
"build:api": "cd api && npm run build",
"build:client": "cd client && npm run build",
"build:watch": "(cd client && npm run build:watch) & (cd api && npm run start:watch)",
"build": "(npm run build:api) && (npm run build:client)",
"ci:api": "cd api && npm ci",
"ci:client": "cd client && npm ci",
"lint": "prettier --check .",
"postinstall": "(npm run ci:api) && (npm run ci:client)",
"prepare": "husky",
"prettier": "prettier --write .",
"spellcheck": "cspell lint \"**/*.md{x,}\"",
"typecheck:api": "cd api && npm run typecheck",
"typecheck:client": "cd client && npm run typecheck",
"typecheck": "(npm run typecheck:api) && (npm run typecheck:client)"
},
"devDependencies": {
"@axe-core/cli": "4.10.1",
"@material/web": "2.2.0",
"cspell": "8.17.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"nodemon": "3.1.9",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"typescript": "5.7.2"
},
"lint-staged": {
"*": "prettier --cache --write --ignore-unknown",
"*.md{x,}": "cspell lint"
},
"cspell": {
"version": "0.2",
"useGitignore": true,
"dictionaries": [
"custom-words"
],
"dictionaryDefinitions": [
{
"name": "custom-words",
"path": "./custom-words.txt",
"addWords": true
}
],
"patterns": [
{
"name": "as-seen-on-locations",
"pattern": "/as_seen_on: .*/g"
}
],
"ignoreRegExpList": [
"as-seen-on-locations",
"Email",
"Urls"
],
"languageId": "typescript,javascript,html,css,markdown,mdx"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "22.12.x",
"npm": "~11.0.0"
}
}