-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.04 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
62
63
64
{
"name": "express-template",
"description": "express template",
"version": "0.0.6",
"private": true,
"author": "[email protected]",
"license": "MIT",
"main": "index.js",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/es-labs/express-template"
},
"bugs": {
"url": "https://github.com/es-labs/express-template/issues"
},
"homepage": "https://github.com/es-labs/express-template#readme",
"keywords": [
"nodejs",
"express"
],
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"app": "node --trace-warnings index.js",
"app:watch": "node --trace-warnings --watch --watch-preserve-output --watch-path=./apps index.js",
"build:lib": "npm i @es-labs/node@latest",
"git:hash": "git rev-parse --verify --short HEAD",
"git:branch": "git rev-parse --abbrev-ref HEAD",
"lint": "eslint .",
"lint:fix": "eslint --fix --no-fix-warnings --no-report-warnings .",
"prepare": "git config core.hooksPath ./git-hooks || echo 'Can not set git hooks'",
"prettier:check": "prettier --check apps/**/*.{js,json}",
"prettier:write": "prettier --write apps/**/*.{js,json}",
"local": "NODE_ENV=development npm run app",
"local:win": "set NODE_ENV=development&&npm run app",
"test": "NODE_ENV=development node --test --test-only",
"test:win": "set NODE_ENV=development&&node --test --test-only",
"test:env:win": "set EDITOR=vim && echo $EDITOR",
"test:e2e": "start-server-and-test start http://localhost:8080 test",
"update-commit-hash": "git rev-parse --verify --short HEAD > commit-hash"
},
"dependencies": {
"@es-labs/esm": "^0.0.31",
"@es-labs/node": "^0.0.47",
"esm": "^3.2.25",
"express": "^4.21.1",
"express-jsdoc-swagger": "^1.8.0",
"js-yaml": "^4.1.0",
"mysql": "^2.18.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.15.0",
"node-mocks-http": "^1.16.1",
"prettier": "^3.4.1",
"start-server-and-test": "^2.0.8"
}
}