-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 812 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 812 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
{
"name": "products-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint ./src",
"dev": "nodemon src/server.js"
},
"repository": "https://github.com/fastPay-pi2/products-api.git",
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"path-to-regexp": "^3.1.0",
"pg": "^7.12.1",
"require-dir": "^1.2.0"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"nodemon": "^1.19.2"
}
}