-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "marvetos",
"version": "1.0.0",
"description": "",
"engines": {
"node": "11.15.0"
},
"main": "index.js",
"scripts": {
"ts:watch": "tsc -w",
"ts:build": "tsc",
"serve": "nodemon build/index.js",
"watch": "concurrently \"npm run ts:watch\" \"npm run serve\"",
"build": "npm run ts:build",
"prod:serve": "node build/index.js",
"start": "npm run build && npm run prod:serve",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"heroku-postbuild": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bluebird": "^3.5.32",
"@types/cors": "^2.8.6",
"@types/crypto-js": "^3.1.47",
"@types/express": "^4.17.6",
"@types/express-fileupload": "^1.1.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.1",
"@types/multer": "^1.4.3",
"@types/nodemailer": "^6.4.0",
"@types/nodemailer-direct-transport": "^1.0.31",
"@types/nodemailer-smtp-transport": "^2.7.4",
"build": "^0.1.4",
"connect-multiparty": "^2.2.0",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.10",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.1",
"nodemailer": "^6.4.10",
"nodemon": "^2.0.4",
"uuid": "^3.3.2",
"ejs": "^2.6.1",
"promise-mysql": "^4.1.3",
"typescript": "^2.4.2"
},
"devDependencies": {
"@types/uuid": "^8.0.1",
"nodemon": "^2.0.4",
"typescript": "^2.4.2"
}
}