-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.06 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
{
"name": "tsc-api",
"version": "1.0.0",
"description": "",
"main": "dist",
"scripts": {
"test": "jest --verbose",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"dev": "npm run clean && tsc-watch --onSuccess \"node dist/src\""
},
"author": "azorvk",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"class-validator": "^0.11.0",
"connect-redis": "^3.4.1",
"express": "^4.17.1",
"express-session": "^1.16.2",
"glob": "^7.1.4",
"module-alias": "^2.2.0",
"mysql": "^2.17.1",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.0-alpha.24",
"typescript": "^3.7.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/connect-redis": "0.0.10",
"@types/express": "^4.17.0",
"@types/express-session": "^1.15.13",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.15",
"@types/redis": "^2.8.13",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"tsc-watch": "^2.2.1"
},
"_moduleAliases": {
"~": "dist/src"
}
}