forked from aura-nw/horoscope-track-node-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "base",
"version": "1.0.0",
"description": "",
"main": "main.js",
"types": "module",
"scripts": {
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/main.js",
"start:dev": "npx nodemon",
"lint": "eslint . --ext .ts --fix",
"prisma:migrate": "npx prisma migrate dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/lodash": "^4.14.197",
"@types/mkdirp": "^2.0.0",
"@types/node-schedule": "^2.1.0",
"@types/underscore": "^1.11.8",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^3.0.1",
"prisma": "^5.2.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@prisma/client": "^5.2.0",
"axios": "^1.4.0",
"bullmq": "^4.8.0",
"dotenv": "^16.3.1",
"mkdirp": "^3.0.1",
"node-schedule": "^2.1.1",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"typechain": "^8.1.1",
"underscore": "^1.13.6",
"yaml": "^2.2.2",
"yaml-loader": "^0.6.0"
}
}