-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "postman",
"version": "1.0.0",
"description": "Simpile to use HTTP mailing API",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-ts": "tsc",
"serve": "node dist/server/app.js",
"start": "npm run build-ts && npm run serve",
"clean": "rm -rf dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auburnhacks/postman.git"
},
"author": "auburnhacks",
"license": "MIT",
"bugs": {
"url": "https://github.com/auburnhacks/postman/issues"
},
"homepage": "https://github.com/auburnhacks/postman#readme",
"devDependencies": {
"@types/express": "^4.16.0",
"@types/jsonwebtoken": "^7.2.8",
"@types/mongodb": "^3.1.10",
"@types/mongoose": "^5.2.18",
"@types/nodemailer": "^4.6.5",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^5.0.0-alpha.3",
"nodemon": "^1.18.4",
"typescript": "^3.1.1"
},
"dependencies": {
"@types/winston": "^2.4.4",
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"handlebars": "^4.0.12",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.3.1",
"nodemailer": "^4.6.8",
"winston": "^3.1.0"
}
}