-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.84 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
67
68
{
"name": "currency-converter-app",
"version": "1.0.0",
"description": "currency converter app",
"type": "module",
"main": "src/app.ts",
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"scripts": {
"start": "ts-node src/app.ts",
"start:dev": "npx nodemon",
"start:prod": "npm run build && node build/app.ts",
"build": "rimraf ./dist && webpack --mode production",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format": "npx prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-openapi": "^12.1.0",
"express-rate-limit": "^6.7.0",
"mongodb": "^5.1.0",
"mongoose": "^7.0.0",
"node-cron": "^3.0.2",
"node-fetch": "^2.6.9",
"routes": "^2.1.0",
"snyk": "^1.1118.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"chai-http": "^4.3.0",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"winston": "^3.8.2"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,css,md}": "prettier --write"
}
}