-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.08 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
69
70
71
72
73
74
75
76
{
"name": "chestnut",
"version": "0.9.0",
"description": "Lightweight releases server for Electron designed to work with `electron-builder` and Electron's built-in `autoUpdater`",
"main": "src/server.js",
"authors": [
"Nick Beaulieu",
"Tristan Dyer",
"Stashpad"
],
"repository": "stashpad/chestnut",
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf ./dist && tsc",
"start": "yarn && nodemon",
"production": "NODE_ENV=production node dist/index.js",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint . --cache",
"type-check": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"async-retry": "^1.3.3",
"date-fns": "^2.29.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-useragent": "^1.0.15",
"handlebars": "^4.7.7",
"helmet": "^5.1.1",
"ms": "^2.1.3",
"node-color-log": "^9.0.0",
"node-fetch": "^2",
"query-string": "^7.1.1",
"semver": "^7.3.7"
},
"devDependencies": {
"@types/async-retry": "^1.4.5",
"@types/express": "^4.17.13",
"@types/express-useragent": "^1.0.2",
"@types/ms": "^0.7.31",
"@types/node": "^18.7.18",
"@types/node-fetch": "^2.6.2",
"@types/semver": "^7.3.12",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitest/coverage-c8": "^0.23.4",
"@vitest/ui": "^0.23.4",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"msw": "^0.47.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"typescript": "*",
"vitest": "^0.23.4"
},
"prettier": {
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "none"
},
"engines": {
"node": ">=16"
}
}