-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.17 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
{
"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": "npm run lint:eslint && npm run 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",
"@astrojs/vue": "^5.0.0",
"@devprotocol/util-ts": "4.0.0",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@tailwindcss/vite": "^4.1.13",
"@upstash/redis": "^1.34.3",
"@vercel/blob": "^2.0.0",
"@vercel/edge": "^1.1.2",
"astro": "^5.0.0",
"ethers": "^6.13.2",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"nanoid": "^5.0.7",
"ramda": "0.32.0",
"redis": "^5.0.0",
"tailwindcss": "^4.1.13",
"vue": "^3.5.4"
},
"devDependencies": {
"@astrojs/check": "^0.9.3",
"@ava/typescript": "6.0.0",
"@eslint/js": "^10.0.0",
"@types/dotenv": "8.2.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "24.12.2",
"@types/ramda": "0.31.1",
"@typescript-eslint/parser": "8.58.2",
"@vercel/node": "^5.0.0",
"ava": "7.0.0",
"dotenv": "17.4.2",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-functional": "^9.0.1",
"globals": "^17.0.0",
"husky": "9.1.7",
"prettier": "3.8.2",
"prettier-plugin-tailwindcss": "^0.7.0",
"rimraf": "6.1.3",
"type-fest": "^5.0.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.28.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.13.0"
}