forked from vercel/hazel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "carrots",
"version": "1.3.0",
"description": "Lightweight update server for Electron apps",
"repository": "PascalPixel/carrots",
"license": "MIT",
"type": "module",
"main": "lib/index.ts",
"scripts": {
"preview": "nodemon --watch lib --ext ts --exec vercel dev",
"test": "vitest run",
"test:watch": "vitest",
"lint": "prettier --config .prettierrc.json -c ./**/*.ts && eslint --config .eslintrc.json ./**/*.ts && tsc --noEmit",
"format": "prettier --config .prettierrc.json -w ./**/*.ts"
},
"dependencies": {
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"find-my-way": "^9.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"semver": "^7.6.3"
},
"devDependencies": {
"@types/node": "^22.10.3",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"async-listen": "^3.0.1",
"cross-env": "^7.0.3",
"eslint": "<9",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vitest": "^1.3.1"
}
}