-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.59 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
49
50
51
52
53
54
55
56
57
{
"name": "@timeit/backend",
"version": "2.0.3",
"description": "Express backend for timeit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"migrate": "tsc && typeorm migration:run"
},
"author": "jamezrin",
"license": "GPL-3.0",
"dependencies": {
"@timeit/error-types": "workspace:*",
"bcrypt": "^5.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"express-jwt": "^6.0.0",
"helmet": "^5.0.0",
"http-status-codes": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"nanoid": "^3.1.9",
"nodemailer": "^6.4.6",
"pg": "^8.0.0",
"reflect-metadata": "^0.2.0",
"tsc-watch": "^4.2.9",
"typeorm": "0.2.44"
},
"devDependencies": {
"@types/bcrypt": "5.0.2",
"@types/cookie-parser": "1.4.7",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/express-serve-static-core": "4.19.6",
"@types/jsonwebtoken": "8.5.9",
"@types/morgan": "1.9.9",
"@types/node": "14.18.63",
"@types/nodemailer": "6.4.16",
"@types/qs": "6.9.16",
"@types/serve-static": "1.15.7",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.8",
"tsconfig-paths": "3.15.0",
"typescript": "4.9.5"
}
}