-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.99 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.99 KB
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
{
"name": "root",
"version": "0.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jwpkg/gitversion",
"directory": "."
},
"author": "Joost van der Waal <joost@jvdwaal.nl>",
"license": "Apache-2.0",
"workspaces": [
"workspaces/packages/*",
"workspaces/e2e/*"
],
"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",
"prepare": "husky"
},
"devDependencies": {
"@jwpkg/constraints-config": "^0.1.1",
"@jwpkg/eslint-config": "^0.1.1",
"@jwpkg/gitversion-s3publish": "workspace:^",
"@types/eslint": "^9.6.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.13",
"@yarnpkg/types": "^4.0.0",
"eslint": "^9.30.1",
"husky": "^9.1.7",
"jest": "^30.0.4",
"jest-util": "^30.0.2",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"vitepress": "^1.3.3"
},
"packageManager": "yarn@4.9.2",
"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"
},
"dependenciesMeta": {
"eslint@9.30.1": {
"unplugged": true
}
}
}