-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.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
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
{
"name": "captn",
"version": "0.1.0",
"private": true,
"description": "",
"keywords": [],
"homepage": "https://github.com/blib-la/captn/",
"bugs": {
"url": "https://github.com/blib-la/captn/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blib-la/captn.git"
},
"license": "AGPL 3.0",
"author": {
"name": "Gregor Adams",
"email": "greg@pixelass.com"
},
"main": "n.a.",
"workspaces": [
"packages/*"
],
"scripts": {
"prebuild": "npm run clean",
"build": "npx lerna run build",
"clean": "npx lerna run clean",
"lint": "eslint packages/**/*.ts",
"ncu": "npx npm-check-updates --deep",
"ncu:minor": "npm run ncu -- -t minor",
"ncu:patch": "npm run ncu -- -t patch",
"prepublishOnly": "npm run build",
"prerelease": "npm run build",
"release": "lerna publish --conventional-commits",
"prerelease:beta": "npm run build",
"release:beta": "lerna publish --canary --preid beta --pre-dist-tag beta",
"spj": "npx sort-package-json@latest \"package.json\" \"packages/*/package.json\"",
"test": "jest",
"typecheck": "tsc --noEmit",
"watch": "npx lerna run watch --parallel"
},
"dependencies": {
"@jest/globals": "^29.7.0",
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.36",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.21",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"eslint-config-xo": "^0.44.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"jest-ts-webcompat-resolver": "^1.0.0",
"lerna": "^8.1.2",
"markdown-toc": "^1.2.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"type-fest": "4.10.3",
"typescript": "^5.3.3"
}
}