forked from ubiquity/devpool-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.62 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
{
"name": "ts-template",
"version": "1.0.0",
"description": "Template repository with TypeScript support.",
"main": "index.ts",
"author": "Ubiquity DAO",
"license": "MIT",
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"format": "run-s format:prettier format:lint",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write .",
"prepare": "husky install",
"test": "jest --setupFiles dotenv/config --coverage"
},
"keywords": [
"typescript",
"template",
"dao",
"ubiquity",
"open-source"
],
"dependencies": {
"@mswjs/data": "0.16.1",
"@octokit/rest": "^20.0.2",
"dotenv": "^16.3.1",
"jest": "29.7.0",
"octokit": "^2.0.14",
"twitter-api-v2": "^1.16.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@octokit/types": "^13.4.1",
"@types/jest": "29.5.12",
"@types/node": "^18.14.6",
"@types/twitter": "^1.7.4",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"esbuild": "^0.19.8",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest-junit": "16.0.0",
"knip": "^3.3.0",
"lint-staged": "^15.1.0",
"msw": "2.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"ts-jest": "29.1.2",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.ts": [
"yarn prettier --write",
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}