-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.09 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "nodejs-express-api-starter-kit",
"type": "module",
"private": true,
"packageManager": "yarn@3.2.3",
"main": "src/index.js",
"scripts": {
"start": "nodemon --no-warnings",
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"commit": "git-cz"
},
"dependencies": {
"apisauce": "^2.1.6",
"archiver": "^5.3.1",
"aws-sdk": "^2.1209.0",
"body-parser": "^1.20.3",
"commitizen": "^4.2.5",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cz-customizable": "6.9.1",
"date-fns": "^2.29.2",
"disco-oauth": "^5.1.1",
"elma-js": "https://github.com/ville-j/elma-js",
"elmajs": "^1.2.0",
"express": "^4.20.0",
"express-fileupload": "^1.4.0",
"express-validator": "^6.14.2",
"husky": "^8.0.1",
"jimp": "^0.16.1",
"jws": "^4.0.0",
"lint-staged": "^13.0.3",
"lodash-contrib": "^4.1200.1",
"lodash-es": "^4.17.21",
"mysql2": "^3.9.8",
"nanoid": "^4.0.0",
"neo-async": "^2.6.2",
"read-chunk": "^4.0.3",
"request": "^2.88.2",
"sequelize": "^6.29.0",
"sharp": "^0.33.5",
"sib-api-v3-sdk": "^8.4.2"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "2.7.1"
},
"imports": {
"#api/*": "./src/api/*.js",
"#constants/*": "./src/constants/*.js",
"#data/*": "./src/data/*.js",
"#data/models": "./src/data/models/index.js",
"#middlewares/*": "./src/middlewares/*.js",
"#utils/*": "./src/utils/*.js",
"#okevalidator/*": "./src/okevalidator/*.js"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.cjs"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"nodemonConfig": {
"env": {
"NODE_ENV": "development"
}
}
}