-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.27 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.27 KB
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
65
66
67
68
69
70
71
72
{
"name": "@jabez007/create-express-template",
"version": "1.0.0",
"description": "an ExpressJS initializer to use with `npm init`",
"bin": "./bin/index.js",
"main": "./src/index.js",
"scripts": {
"prebuild:docker": "npm run lint",
"build:docker": "docker build --platform=linux/amd64 -t jabez07/create-express-template:$npm_package_version .",
"prelint": "npm run version:short",
"lint": "eslint --fix './src/**/*.{js,jsx,ts}'",
"serve": "nodemon --watch src -e js,jsx --exec npm run start",
"serve:docker": "docker run --init --name create-express-template -p 80:8080 --env-file ./.env -d jabez07/create-express-template:$npm_package_version",
"prestart": "npm run lint",
"start": "node -r dotenv/config .",
"start:docker": "node .",
"test": "NODE_ENV=test mocha -r module-alias/register",
"version:short": "echo '{ \"short\": \"'$(git rev-parse --short HEAD)'\" }' > src/version.log"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jabez007/create-express-template.git"
},
"keywords": [
"npm",
"init",
"ExpressJS",
"initializer",
"project",
"template"
],
"author": "Jimmy McCann",
"license": "MIT",
"bugs": {
"url": "https://github.com/jabez007/create-express-template/issues"
},
"homepage": "https://github.com/jabez007/create-express-template#readme",
"devDependencies": {
"dotenv": "^16.4.5",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.4.0",
"mocha": "^10.6.0",
"node-mocks-http": "^1.15.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"axios": "^1.7.3",
"express": "^4.19.2",
"module-alias": "^2.2.3",
"morgan": "^1.10.0",
"path-to-regexp": "^7.1.0",
"short-unique-id": "^5.2.0",
"swagger-jsdoc": "^6.2.8",
"swagger-parser": "^10.0.3",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"winston": "^3.13.1"
},
"_moduleAliases": {
"@": "./src",
"@databases": "./src/connections/databases",
"@models": "./src/models",
"@routes": "./src/routes",
"@services": "./src/connections/services",
"@utils": "./src/utils"
}
}