-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 754 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 754 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
{
"name": "user-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "./node_modules/.bin/nodemon -r dotenv/config index.js",
"migrate": "./node_modules/.bin/knex migrate:latest",
"seed": "./node_modules/.bin/knex seed:run",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^6.10.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"knex": "^0.17.6",
"pg": "^7.11.0",
"pino": "^5.12.6",
"pino-http": "^4.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"dotenv": "^8.0.0",
"nodemon": "^1.19.1"
}
}