-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "krates",
"version": "1.0.0",
"description": "json based http database",
"main": "index.js",
"repository": "https://github.com/sumitkolhe/krates",
"author": "sumit kolhe",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"start": " node -r ts-node/register/transpile-only ./dist/src/server.js",
"build": "tsc -p tsconfig.prod.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/ioredis": "^4.28.7",
"@types/morgan": "^1.9.3",
"bson": "^4.6.1",
"celebrate": "^15.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.2",
"express": "^4.17.2",
"ioredis": "^4.28.2",
"joi": "^17.5.0",
"mongoose": "^6.1.5",
"morgan": "^1.10.0",
"rate-limiter-flexible": "^2.3.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"winston": "^3.3.3"
}
}