-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.64 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.64 KB
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
{
"name": "redis-cache",
"version": "1.0.0",
"author": "Lucas Fernandes <fernandes.lucas11@outlook.com>",
"license": "MIT",
"scripts": {
"start": "node dist",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --inspect=0.0.0.0:9229 src",
"build": "rimraf dist && babel src --extensions \".ts\" --out-dir dist --copy-files --no-copy-ignored"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/bcrypt": "^5.0.0",
"@types/dotenv-flow": "^3.2.0",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.27.6",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.2.1",
"prettier": "^2.4.1",
"prisma": "3.1.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"dependencies": {
"@prisma/client": "^3.1.1",
"bcrypt": "^5.0.1",
"dotenv-flow": "^3.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"ioredis": "^4.27.10",
"jsonwebtoken": "^8.5.1"
}
}