-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.98 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
{
"name": "kelloaalio",
"version": "1.2.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "NODE_PATH=./src nodemon ./src/app.ts",
"lint": "eslint .",
"removeGlobalCommands": "NODE_PATH=./src nodemon ./src/removeGlobalCommands.ts",
"build": "tsc",
"test": "NODE_PATH=./src jest",
"start:prod": "NODE_PATH=./dist NODE_ENV=production node dist/app.js",
"start:pm2-prod": "npx pm2 start npm --name kelloaalio -- run start:prod",
"postinstall": "npx prisma generate",
"prepare": "husky install",
"release": "standard-version"
},
"author": "miksuh",
"license": "MIT",
"dependencies": {
"@prisma/client": "^4.16.2",
"axios": "^0.27.2",
"chart.js": "^3.8.0",
"chartjs-adapter-luxon": "^1.1.0",
"chartjs-node-canvas": "^4.1.6",
"cron": "^2.1.0",
"discord-interactions": "^3.2.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"luxon": "^2.5.2",
"node-fetch": "^2.6.7",
"sqlite": "^4.1.1",
"sqlite3": "^5.1.5",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@tsconfig/node16": "^1.0.2",
"@types/cron": "^2.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/luxon": "^2.3.2",
"@types/node": "^17.0.45",
"@types/node-fetch": "^2.6.2",
"@types/sqlite3": "^3.1.8",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"prisma": "^4.16.2",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.8.3"
},
"engines": {
"node": "18.x"
}
}