-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "emfrest",
"version": "1.1.3",
"description": "Quickly build RESTful APIs with Express and Mongoose.",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "echo \"No test specified...\"",
"docs": "jsdoc ./lib -c ./jsdoc.config.json -d ./docs/ -t ./node_modules/foodoc/template -R README.md",
"deploy-docs": "npm run docs && git add . && git commit -m \"chore: Add updated documentation\" && git push",
"dev": "nodemon src/example.ts",
"build": "npx tsc",
"generate-types": "npx tsc --declaration --allowJs --emitDeclarationOnly --outDir types",
"build-with-types": "rm -r ./lib && rm -r ./types && npm run generate-types && npx tsc && npm run build"
},
"keywords": [
"emfrest",
"api",
"api-rest",
"express",
"expressjs",
"rest",
"restapi",
"rest-api",
"restful-api",
"mongoose",
"mongoosejs",
"mongodb"
],
"repository": {
"type": "git",
"url": "https://github.com/DEEJ4Y/emfrest.git"
},
"author": "DEEJ4Y",
"license": "ISC",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/express": "^4.17.13",
"foodoc": "^0.0.9",
"nodemon": "^2.0.20",
"typescript": "^4.9.4"
},
"dependencies": {
"express": "^4.18.1",
"mongoose": "^6.5.5"
}
}