forked from vercel/hazel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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
{
"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": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.ts",
"lint": "prettier --config .prettierrc.json -c ./**/*.ts && eslint --config .eslintrc.json ./**/*.ts && tsc --noEmit",
"format": "prettier --config .prettierrc.json -w ./**/*.ts"
},
"dependencies": {
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"find-my-way": "^8.2.0",
"semver": "^7.6.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.1",
"@types/semver": "^7.5.8",
"async-listen": "^3.0.1",
"cross-env": "^7.0.3",
"eslint": "^9.4.0",
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"prettier": "^3.3.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}