-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.84 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
{
"name": "root",
"version": "0.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jwpkg/gitversion",
"directory": "."
},
"author": "Joost van der Waal <[email protected]>",
"license": "Apache-2.0",
"workspaces": [
"workspaces/packages/*"
],
"scripts": {
"aws:login": "aws sso login --profile cp-utils-prod",
"build:all": "yarn validate:all && yarn build:packages",
"build:packages": "yarn workspaces foreach -A run build",
"validate:all": "yarn validate:constraints && yarn validate:lint && yarn validate:tests",
"validate:constraints": "yarn constraints",
"validate:lint": "yarn eslint",
"validate:tests": "yarn jest",
"eslint": "eslint",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@jwpkg/constraints-config": "^0.1.1",
"@jwpkg/eslint-config": "^0.1.1",
"@jwpkg/gitversion-s3publish": "workspace:^",
"@types/eslint": "^9.6.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@yarnpkg/types": "^4.0.0",
"eslint": "^9.9.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"vitepress": "^1.3.3"
},
"packageManager": "[email protected]",
"private": true,
"engines": {
"node": ">=18.12.0"
},
"jest": {
"testMatch": [
"**/*._test_.ts"
],
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"diagnostics": {
"ignoreCodes": [
151001
]
}
}
]
}
},
"dependencies": {
"@jwpkg/gitversion": "workspace:^",
"asciinema-player": "^3.6.4",
"vue": "^3.4.15",
"vue3-asciinema-player": "^0.0.3"
}
}