-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.2 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.2 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
82
83
84
85
{
"name": "ts-template",
"version": "0.0.0",
"description": "Template repository with TypeScript support.",
"main": "build/index.ts",
"author": "Ubiquity DAO",
"license": "MIT",
"engines": {
"node": ">=20.10.0",
"bun": ">=1.0.0"
},
"scripts": {
"start": "bun build/esbuild-server.ts",
"build": "bun build/esbuild-build.ts",
"format": "run-s format:lint format:prettier format:cspell",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write .",
"format:cspell": "cspell **/*",
"knip": "knip --config .github/knip.ts",
"knip-ci": "knip --no-exit-code --reporter json --config .github/knip.ts",
"test": "jest --setupFiles dotenv/config --coverage",
"cy:open": "cypress open",
"cy:run": "cypress run",
"prepare": "husky"
},
"keywords": [
"typescript",
"template",
"dao",
"ubiquity",
"open-source"
],
"dependencies": {
"dotenv": "^16.6.1"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@cspell/dict-node": "^4.0.3",
"@cspell/dict-software-terms": "^3.4.10",
"@cspell/dict-typescript": "^3.2.3",
"@eslint/js": "^9.32.0",
"@jest/globals": "29.7.0",
"@mswjs/data": "0.16.1",
"@octokit/rest": "^21.1.1",
"@types/bun": "latest",
"@types/jest": "29.5.12",
"@types/node": "^20.19.9",
"@ubiquity-os/eslint-plugin-no-empty-strings": "^1.0.3",
"cspell": "^8.19.4",
"cypress": "13.6.6",
"esbuild": "^0.20.2",
"eslint": "9.14.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-sonarjs": "^2.0.4",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jest-md-dashboard": "0.8.0",
"knip": "^5.62.0",
"lint-staged": "^15.5.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"simple-git": "^3.28.0",
"ts-jest": "29.1.2",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"src/**.{ts,json}": [
"cspell"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}