forked from docker/docker-nodejs-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 765 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 765 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
{
"name": "mydocker-nodejs",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"description": "a string that contains a human-readable description of the module." ,
"scripts": {
"prettify": "prettier -l --write \"**/*.js\"",
"test": "jest",
"dev": "nodemon --inspect=0.0.0.0:9229 -L src/index.js"
},
"dependencies": {
"express": "^4.18.2",
"pg": "^8.11.2",
"sqlite3": "^5.1.2",
"uuid": "^9.0.0",
"wait-port": "^1.0.4"
},
"resolutions": {
"ansi-regex": "5.0.1"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true
},
"devDependencies": {
"jest": "^29.6.2",
"nodemon": "^3.0.1",
"prettier": "^2.7.1"
}
}