-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"name": "ecom_solutions",
"version": "1.0.0",
"description": "Multi Tenant Ecommerce Applications",
"scripts": {
"lint": "eslint --ignore-path .gitignore ."
},
"author": "Sandeep Kumar",
"license": "ISC",
"lint-staged": {
"*.js": [
"npm run lint",
"prettier --write"
],
"*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@serverless/eslint-config": "^3.0.0",
"eslint": "^7.17.0",
"eslint-plugin-import": "^2.22.1",
"git-list-updated": "^1.2.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"serverless-iam-roles-per-function": "^3.1.0",
"serverless-offline": "^6.8.0",
"serverless-pseudo-parameters": "^2.5.0"
},
"dependencies": {
"ajv": "^7.0.3",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"crypto": "^1.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"uuid": "^8.3.2"
}
}