-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 KB
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
{
"name": "api-controller-express",
"version": "1.2.3",
"description": "A library which creates express routes based on collections.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"start": "node dist/index.js",
"build": "tsc -p .",
"dev": "nodemon src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/SutharMukesh/api-controller-express"
},
"author": {
"name": "Mukesh Suthar",
"email": "mukeshsuthar336@gmail.com"
},
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.7",
"@types/node": "^14.0.22",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.6"
},
"dependencies": {
"ajv": "^6.12.3",
"express": "^4.17.1"
},
"keywords": [
"api",
"collections",
"expressjs"
]
}