generated from jairoadi/podium-api-demo-contacts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1 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
{
"name": "podium-api-sample-contacts",
"version": "1.1.1",
"description": "A Podium demo app for CRUD contacts",
"main": "index.js",
"scripts": {
"lint": "yarn eslint . --ext .js",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"format": "prettier --write .",
"format:check": "prettier --list-different '**/*.{js,md,json,yml}'"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/podium/podium-api-sample-contacts.git"
},
"author": "Jairo Franco",
"license": "ISC",
"engines": {
"node": "21.x"
},
"bugs": {
"url": "https://github.com/podium/podium-api-sample-contacts/issues"
},
"homepage": "https://github.com/podium/podium-api-sample-contacts#readme",
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"eslint": "^8.45.0",
"express": "^4.18.2",
"node-fetch": "^3.2.4"
},
"devDependencies": {
"jest": "^29.6.1",
"prettier": "^2.8.0"
}
}