forked from GeekyAnts/express-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.14 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
{
"name": "node-server-with-typescript",
"version": "1.0.0",
"description": "A Web & API server built using TypeScript",
"main": "dist",
"dependencies": {
"@types/bluebird": "^3.5.24",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"compression": "^1.7.3",
"connect-mongo": "^2.0.1",
"cors": "^2.8.4",
"crypto": "^1.0.1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-flash": "0.0.2",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"express-status-monitor": "^1.2.3",
"express-validator": "^5.3.0",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"jquery.easing": "^1.4.1",
"jsonwebtoken": "^8.3.0",
"kue": "^0.11.6",
"lodash": "^4.17.11",
"lusca": "^1.6.1",
"magnific-popup": "^1.1.0",
"memory-cache": "^0.2.0",
"mongoose": "^5.2.9",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-instagram": "^1.0.0",
"passport-linkedin-oauth2": "^1.5.0",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"passport-twitter": "^1.0.4",
"pug": ">=3.0.1",
"request": "^2.88.0",
"tslint": "^5.11.0"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.10",
"@types/mocha": "^5.2.5",
"@types/mongodb": "^3.1.4",
"@types/mongoose": "^5.2.6",
"@types/node": "^12.12.17",
"awesome-typescript-loader": "^5.2.0",
"mocha": "^5.2.0",
"typescript": "^3.0.1",
"typescript-eslint-parser": "^18.0.0"
},
"scripts": {
"build": "tsc --project './tsconfig.json'",
"dev": "tsc --project './tsconfig.json' --watch & NODE_ENV=development nodemon dist",
"test": "tsc --project './tsconfig.json' && ./node_modules/.bin/mocha dist/**/*.spec.js",
"lint": "./node_modules/.bin/tslint -c tslint.json 'src/**/**.ts'"
},
"author": "Faiz A. Farooqui <[email protected]>",
"license": "ISC"
}