This repository has been archived by the owner on Mar 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.38 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
73
74
75
76
77
{
"name": "chickentendermarketplace",
"version": "1.0.0",
"description": "Chicken Tender Marketplace",
"main": "index.ts",
"scripts": {
"start": "node dist/index.js",
"prestart": "npm run build",
"build": "tsc --skipLibCheck",
"prebuild": "npm run dust",
"dust": "dustc src/mailing/templates/*.dust --pwd src/mailing/templates -o dist/views/email.js",
"predust": "npm run copy",
"copy": "node build.js",
"precopy": "npm run lint",
"watch": "nodemon --watch src -e js,ts,dust,png,jpg,css,json --exec \"npm start\"",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"author": "Craig Dunford",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cdunford/chickentendermarketplace.git"
},
"dependencies": {
"@passport-next/passport-google-oauth2": "^1.0.0",
"adaro": "^1.0.4",
"agenda": "^2.0.2",
"body-parser": "^1.18.3",
"bootstrap": "^3.4.1",
"bootstrap-social": "^5.1.1",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^2.1.1",
"dustjs-helpers": "^1.7.4",
"dustjs-linkedin": "^2.7.5",
"express": "^4.16.4",
"express-session": "^1.15.6",
"express-validator": "^4.3.0",
"fs-extra": "^4.0.3",
"jquery": "^3.3.1",
"mime-types": "^2.1.22",
"moment": "^2.24.0",
"mongoose": "^5.4.18",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"nodemailer": "^4.7.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-github2": "^0.1.11",
"simple-pagination.js": "^1.6.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/agenda": "^2.0.4",
"@types/body-parser": "^1.17.0",
"@types/connect-flash": "0.0.33",
"@types/connect-mongodb-session": "0.0.0",
"@types/cookie-parser": "^1.4.1",
"@types/dustjs-linkedin": "^1.2.31",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/fs-extra": "^4.0.8",
"@types/mime-types": "^2.1.0",
"@types/mongoose": "^5.3.21",
"@types/mongoose-paginate": "^5.0.6",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.7",
"@types/node": "^8.10.43",
"@types/nodemailer": "^4.6.6",
"@types/passport": "^0.3.5",
"@types/passport-facebook": "^2.1.8",
"@types/passport-github2": "^1.2.4",
"@types/uuid": "^3.4.4",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
}
}