-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "wines-service",
"version": "1.0.0",
"description": "Wines management api",
"main": "src/index.js",
"engines": {
"node": "12"
},
"scripts": {
"dev": "nodemon src",
"lint": "eslint .",
"test": "mocha './!(node_modules)/**/*.spec.js' --exit",
"tdd": "npm run test -- --watch",
"start": "node src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vispercept/Wines.git"
},
"keywords": [],
"author": "Thomas König",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vispercept/Wines/issues"
},
"homepage": "https://github.com/Vispercept/Wines#readme",
"dependencies": {
"fastify": "^2.14.1",
"fastify-helmet": "^3.0.2",
"fastify-sensible": "^2.1.1",
"fastify-swagger": "^2.6.0",
"mongoose": "^5.9.19",
"pino-pretty": "^4.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4"
}
}