-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "moe-counter",
"description": "Moe Counter rewritten in TypeScript",
"version": "1.2.0",
"private": true,
"author": "totoroterror",
"scripts": {
"build": "tsc",
"dev": "cross-env NODE_ENV=development node --nolazy -r ts-node/register src/index.ts",
"lint": "eslint .",
"prepare": "husky install",
"start": "cross-env NODE_ENV=production node dist/index.js"
},
"dependencies": {
"@starkow/logger": "^2.3.1",
"common-tags": "^1.8.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"image-size": "^1.1.1",
"mime-types": "^2.1.35",
"redis": "^4.6.15"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@types/common-tags": "^1.8.4",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.4.0",
"husky": "^8.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}