-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 898 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 898 Bytes
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": "chefpoint-feedback-api",
"version": "2.0.0",
"description": "CHEF POINT Feedback API, built on Node.js, Express and Google Sheets",
"author": "João de Vasconcelos",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ChefPoint/feedback-api.git"
},
"bugs": {
"url": "https://github.com/ChefPoint/feedback-api/issues"
},
"main": "index.js",
"scripts": {
"development": "nodemon",
"test": "jest --watch-all --verbose",
"start": "node index.js"
},
"engines": {
"node": "16.13.2"
},
"dependencies": {
"compression": "^1.7.4",
"config": "^3.3.7",
"cors": "^2.8.5",
"express": "^4.17.2",
"google-spreadsheet": "^3.2.0",
"helmet": "^5.0.2",
"joi": "^17.5.0",
"moment": "^2.29.1"
},
"devDependencies": {
"nodemon": "^2.0.15",
"jest": "^27.4.7"
}
}