-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.07 KB
/
package.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "sdavids-node-docker-image-slimming",
"description": "Techniques for creating a smaller Node.js Docker image.",
"version": "1.0.0",
"license": "Apache-2.0",
"contributors": [
"Sebastian Davids <[email protected]>"
],
"homepage": "https://github.com/sdavids/sdavids-node-docker-image-slimming",
"bugs": "https://github.com/sdavids/sdavids-node-docker-image-slimming/issues",
"repository": {
"type": "git",
"url": "https://github.com/sdavids/sdavids-node-docker-image-slimming.git"
},
"keywords": [
"express"
],
"private": true,
"type": "module",
"scripts": {
"preinstall": "scripts/preinstall.sh",
"prepare": "scripts/prepare.sh",
"build": "scripts/build.sh",
"cert:create": "scripts/create-self-signed-cert.sh docker/certs",
"cert:delete": "scripts/delete-self-signed-cert.sh docker/certs",
"clean": "scripts/clean.sh",
"clean:node": "scripts/clean-node.sh",
"docker:build": "scripts/docker-build.sh",
"docker:cleanup": "scripts/docker-cleanup.sh",
"docker:health": "scripts/docker-health.sh",
"docker:logs": "scripts/docker-logs.sh",
"docker:sh": "scripts/docker-sh.sh",
"docker:start": "scripts/docker-start.sh",
"docker:start:secure": "scripts/docker-start-secure.sh",
"docker:stop": "scripts/docker-stop.sh",
"format": "scripts/format.sh",
"format:check": "scripts/format-check.sh",
"lint": "npx eslint --cache .",
"lint:fix": "npx eslint --cache --fix .",
"start": "NODE_ENV=production node src/js/server.mjs",
"start:build": "NODE_ENV=production node dist/server.cjs",
"start:dev": "NODE_ENV=development nodemon --inspect --watch src/js src/js/server.mjs"
},
"dependencies": {
"@faker-js/faker": "8.4.1",
"express": "4.19.2"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@eslint/js": "9.2.0",
"esbuild": "0.21.2",
"eslint": "9.2.0",
"globals": "15.2.0",
"husky": "9.0.11",
"is-ci": "3.0.1",
"lint-staged": "15.2.2",
"nodemon": "3.1.0",
"prettier": "3.2.5"
}
}