-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1 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
{
"name": "rmd",
"version": "1.0.0",
"dependencies": {
"date-fns": "^2.29.3",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"pino": "^8.19.0",
"pino-pretty": "^4.3.0",
"reflect-metadata": "^0.2.1",
"telegraf": "^4.12.2",
"typeorm": "^0.3.20",
"uuid": "^8.3.1"
},
"devDependencies": {
"@rspack/cli": "^0.5.6",
"@types/lodash": "^4.14.184",
"@types/node": "^20.11.1",
"@typescript-eslint/parser": "^7.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5"
},
"scripts": {
"build": "rimraf dist && rspack",
"build:watch": "rspack --watch",
"dev": "pnpm build:watch | cross-env NODE_ENV=local nodemon dist/server.js",
"start": "pnpm build && node dist/server.js",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint ./src/**/*.ts --fix",
"migrations": "pnpm build && node dist/migrations.js"
}
}