-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 861 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 861 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
{
"name": "test-node-jm",
"version": "1.0.0",
"description": "Test for fun - node evaluation",
"main": "./src/index.js",
"scripts": {
"start": "env TZ='America/Lima' node ./src/index",
"dev-start": "env NODE_ENV=development env TZ='America/Lima' node ./src/index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mk-JM/test-node-jm.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mk-JM/test-node-jm/issues"
},
"homepage": "https://github.com/mk-JM/test-node-jm#readme",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-errors": "^1.8.0",
"lodash": "^4.17.21",
"mongoose": "^5.13.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
}
}