This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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": "climate-stats-dash",
"version": "0.0.0",
"description": "",
"packageManager": "[email protected]",
"author": "Jasper Mayone <[email protected]>",
"license": "EPL-2.0",
"keywords": [],
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon --watch './**/*.ts' --exec 'ts-node' src/index.ts",
"test": "jest",
"lint": "prettier --write --color './**/*.ts'",
"prepare": "husky install"
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"chalk": "^5.0.1",
"colors": "^1.4.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"express-correlation-id": "^2.0.1",
"express-ping": "^1.4.0",
"express-rate-limit": "^6.4.0",
"express-validator": "^6.14.0",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mathjs": "^10.4.1",
"mongoose": "^6.2.10",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "18.0.3",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.3",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"nodemon": "2.0.19",
"prettier": "2.7.1",
"prettier-eslint": "15.0.1"
},
"lint-staged": {
"**/*": "prettier --write --color --ignore-unknown"
}
}