forked from reflex-media/lesgo-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.89 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
{
"name": "lesgo",
"version": "1.0.0",
"description": "Core framework for lesgo node.js serverless framework.",
"main": "./src/index.js",
"author": "Sufiyan Rahmat",
"license": "MIT",
"bugs": {
"url": "https://github.com/reflex-media/lesgo-framework/issues"
},
"homepage": "https://github.com/reflex-media/lesgo-framework#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/reflex-media/lesgo-framework.git"
},
"files": [
"src",
"bin"
],
"scripts": {
"pretest": "eslint .",
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"prepublishOnly": "npm run test",
"lint": "eslint '**/*.{js,ts,jsx,tsx}' --quiet",
"lint-fix": "eslint '**/*.{js,ts,jsx,tsx}' --fix"
},
"bin": {
"lesgo-scripts": "./bin/lesgo-scripts.sh"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"aws-sdk": "^2.1084.0",
"babel-jest": "^24.9.0",
"coveralls": "^3.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"dependencies": {
"@elastic/elasticsearch": "7.13.0",
"@firebase/app": "^0.7.17",
"data-api-client": "^1.2.0",
"firebase-admin": "^9.12.0",
"jsonwebtoken": "^8.5.1",
"memcache-plus": "^0.2.22",
"mysql2": "^2.3.3",
"nanoid": "^3.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"npm run lint",
"git add"
]
}
}