-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.32 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "api-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"build": "npx tailwind build public/styles.css -o public/output.css",
"start": "node ./dist/index.js",
"postinstall": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^16.1.7",
"bcrypt": "^3.0.7",
"compression": "^1.7.4",
"connect-ensure-login": "^0.1.1",
"cors": "^2.8.5",
"crypto-random-string": "^3.1.0",
"date-fns": "^2.9.0",
"dotenv": "^8.1.0",
"envalid": "^5.0.0",
"express": "^5.0.0-alpha.7",
"express-session": "^1.17.0",
"hbs": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"mongoose": "^5.7.4",
"morgan": "^1.9.1",
"oauth2orize": "^1.11.0",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"short-uuid": "^3.1.1",
"tailwindcss": "^1.1.4",
"tsc-watch": "^4.0.0",
"typescript": "^3.6.4",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/compression": "^1.0.1",
"@types/connect-ensure-login": "^0.1.5",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/express-session": "^1.15.16",
"@types/hapi__joi": "^16.0.1",
"@types/hbs": "^4.0.1",
"@types/jsonwebtoken": "^8.3.4",
"@types/mongoose": "^5.5.20",
"@types/morgan": "^1.7.37",
"@types/node": "^12.7.12",
"@types/oauth2orize": "^1.8.7",
"@types/passport": "^1.0.2",
"@types/passport-http": "^0.3.8",
"@types/passport-local": "^1.0.33",
"@types/passport-oauth2-client-password": "^0.1.2",
"@types/supertest": "^2.0.8",
"@types/uuid": "^3.4.6",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.18.2"
}
}