-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 997 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 997 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
39
40
41
42
43
44
45
46
{
"name": "coffee-delivery-service",
"version": "1.0.0",
"description": "A simple coffee delivery service API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "mocha --exit ./test/*.test.js",
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": "prettier --write"
},
"dependencies": {
"axios": "^1.5.1",
"express": "^4.17.1"
},
"keywords": [
"coffee",
"delivery",
"service",
"api"
],
"author": "Akul Devali",
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.ncsu.edu:AkulDevali-CSC519/DevOpsProject.git"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"chai": "^4.3.10",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"mocha": "^10.2.0",
"prettier": "^3.6.2",
"supertest": "^6.3.3"
}
}