This repository has been archived by the owner on Jun 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 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
{
"name": "api",
"private": true,
"version": "1.0.0",
"repository": "https://github.com/upframe/api.git",
"author": "Upframe <[email protected]>",
"license": "GPL-3.0-or-later",
"main": "app.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./app.ts",
"prod": "tsc && node ./build/app.js",
"start": "node ./build/app.js",
"lint": "eslint . --ext .ts --cache && prettier --check \"./**/*.ts\"",
"format": "eslint . --ext .ts --fix --cache && prettier --write \"./**/*.ts\""
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint"
}
},
"dependencies": {
"array.prototype.flatmap": "^1.2.3",
"aws-sdk": "^2.321.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"connect-busboy": "^0.0.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"formidable": "^1.2.1",
"googleapis": "^37.2.0",
"husky": "^3.0.2",
"jsonwebtoken": "^8.3.0",
"mailgun-js": "^0.21.0",
"moment": "^2.22.2",
"moment-timezone": "^0.5.26",
"morgan": "^1.9.1",
"mysql2": "^1.6.1",
"node-fetch": "^2.3.0",
"string.prototype.matchall": "^4.0.1",
"ts-node-dev": "^1.0.0-pre.32",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/jsonwebtoken": "^8.3.5",
"@types/mailgun-js": "^0.22.3",
"@types/morgan": "^1.7.37",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"eslint": "^6.5.1",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.18.2",
"typescript": "^3.6.4"
}
}