-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "fastify-mongoose-api",
"version": "1.2.23",
"description": "API for Mongoose models in one line of code",
"main": "fastify-mongoose-api.js",
"scripts": {
"test": "tap -j1 --allow-incomplete-coverage ./test/*.test.js",
"coverage": "tap -j1 ./test/*.test.js",
"lint": "eslint \"src/**/*.[jt]s?(x)\" \"test/**/*.?(c)[jt]s\"",
"lint:fix": "npm run lint -- --fix"
},
"repository": "https://github.com/jeka-kiselyov/fastify-mongoose-api.git",
"keywords": [
"fastify",
"mongoose",
"mongodb",
"mongo",
"rest",
"api",
"crud"
],
"author": "Jeka Kiselyov",
"contributors": [
{
"name": "Emiliano Bruni",
"url": "https://github.com/EmilianoBruni",
"author": true
}
],
"license": "MIT",
"dependencies": {
"fastify": "^4.26.0",
"fastify-plugin": "^4.5.1",
"mongoose": "^8.1.1"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"grunt": "^1.6.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-env": "^1.0.1",
"grunt-eslint": "^24.3.0",
"grunt-tape": "^0.1.0",
"prettier": "^3.2.5",
"tap": "^18.7.0"
}
}