-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 893 Bytes
/
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
{
"name": "sorteio3",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "tslint -p tsconfig.json",
"build": "tsc",
"build:watch": "tsc --watch",
"run:watch": "tsc-watch --onSuccess 'node dist/main.js'",
"run:dist": "node dist/main.js"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.1",
"@types/redis": "^2.8.14",
"@types/uuid": "^3.4.6",
"localtunnel": "^2.0.0",
"tsc-watch": "^4.0.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.0.0-beta0",
"typescript": "^3.6.4"
},
"private": true
}