-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.7 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
{
"name": "template",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix .",
"build": "npx tsc",
"run": "node dist/index.js",
"start": "npm-run-all build run",
"build-tests": "npm-run-all build test",
"release": "npm-run-all build run-release",
"run-release": "npm publish",
"test": "mocha --exit",
"prettier": "npx eslint --fix . && prettier --write .",
"dev": "concurrently \"tsc -w\" \"nodemon dist/index.js\""
},
"author": "",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"concurrently": "^5.3.0",
"eslint": "^7.9.0",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"typescript": "^4.0.2",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.1.2",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
},
"dependencies": {
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/express-rate-limit": "^5.1.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.36",
"@types/morgan": "^1.9.1",
"@types/randomcolor": "^0.5.5",
"bcrypt": "^3.0.8",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-validator": "^6.4.0",
"fetchio-js": "^1.1.1",
"helmet": "^4.1.0",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.2",
"mongoose": "^5.8.11",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.3",
"randomcolor": "^0.6.2",
"uid": "^1.0.0",
"uuid": "^3.4.0"
}
}