-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.74 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.74 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
{
"name": "express-starter",
"version": "1.0.0",
"description": "Express.js starter project",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/app.js",
"start:dev": "nodemon src/app.js",
"commit": "git-cz",
"commit:all": "git add . && git-cz",
"postinstall": "link-module-alias",
"preinstall": "command -v link-module-alias && link-module-alias clean || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zahreva/express-starter.git"
},
"keywords": [
"starter",
"express.js",
"alias"
],
"commitizen": {
"path": "./node_modules/cz-emoji"
},
"lint-staged": {
"src/**/*.{js}": [
"eslint --fix",
"git add"
]
},
"_moduleAliases": {
"#utils": "src/utils",
"#error": "src/utils/error-handler",
"#config": "src/config",
"#middlewares": "src/middlewares"
},
"author": "Yuriy Zahreva",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"glob": "^7.1.4",
"module-alias": "^2.2.1",
"morgan": "^1.9.1",
"winston": "^3.2.1"
},
"devDependencies": {
"cz-emoji": "^1.1.2",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"git-cz": "^3.2.1",
"husky": "^3.0.5",
"link-module-alias": "^1.2.0",
"lint-staged": "^9.3.0",
"nodemon": "^1.19.3",
"prettier": "^1.18.2"
},
"bugs": {
"url": "https://github.com/zahreva/express-starter/issues"
},
"homepage": "https://github.com/zahreva/express-starter#readme"
}