-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.9 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.9 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
{
"name": "template-repos-ts",
"version": "1.0.0",
"type": "module",
"description": "Template repository for using TypeScript",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"test": "ava || echo 'Skip'",
"pretest": "tsc",
"prebuild": "rimraf dist",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --fix",
"lint:format": "prettier --write '**/*.{ts,js,json,md,yml}'",
"typecheck": "astro check && tsc --noEmit",
"prepare": "husky"
},
"author": "Dev Protocol",
"license": "MPL-2.0",
"dependencies": {
"@astrojs/vercel": "^9.0.0",
"@devprotocol/dev-kit": "8.7.0",
"@devprotocol/util-ts": "4.0.0",
"@vercel/blob": "^2.0.0",
"airtable": "^0.12.2",
"astro": "^5.0.0",
"bignumber.js": "^11.0.0",
"cross-fetch": "^4.0.0",
"ethers": "^6.7.1",
"p-queue": "^9.0.0",
"ramda": "0.32.0",
"redis": "^5.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.0",
"@ava/typescript": "7.0.0",
"@eslint/js": "^9.24.0",
"@types/dotenv": "8.2.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "24.12.4",
"@types/ramda": "0.31.1",
"@vercel/node": "^5.0.0",
"ava": "8.0.1",
"dotenv": "17.4.2",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-functional": "^9.0.1",
"globals": "^17.0.0",
"husky": "9.1.7",
"prettier": "3.8.3",
"rimraf": "6.1.3",
"type-fest": "^5.0.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.29.0"
},
"ava": {
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"/": "dist/"
},
"compile": false
}
},
"repository": "git+https://github.com/dev-protocol/template-repos-ts.git",
"bugs": {
"url": "https://github.com/dev-protocol/template-repos-ts/issues"
},
"homepage": "https://github.com/dev-protocol/template-repos-ts#readme",
"private": true,
"packageManager": "yarn@4.15.0"
}