-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.22 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": "stroom-meter-api",
"version": "1.0.0",
"description": "This is the API that connects the current modules together with the app. This also connects to a MongoDB database for all the information",
"main": "server.js",
"scripts": {
"start": "nodemon server.js"
},
"keywords": [
"mongoDB",
"RestAPI",
"stroomsensor"
],
"author": "Ward Lavrijsen",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"greenlock-express": "^4.0.3",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.12",
"morgan": "^1.10.0",
"nodemailer": "^6.7.1",
"nodemon": "^2.0.14",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"prettier": "^2.4.1"
},
"engines": {
"node": ">=12.0.0"
},
"standard": {
"parser": "@babel/eslint-parser"
}
}