-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
{
"name": "root",
"private": true,
"scripts": {
"dev": "lerna run dev --stream",
"build": "lerna run build --stream --parallel --since",
"deploy": "lerna run deploy --stream --parallel --since"
},
"dependencies": {
"@types/lodash": "^4.14.161",
"@types/lodash.isequal": "^4.5.5",
"api": "file:packages/api",
"auth": "file:packages/auth",
"front": "file:packages/front",
"typing": "file:packages/typings"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.63",
"@types/knex": "^0.16.1",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"aws-sdk": "^2.766.0",
"dotenv-webpack": "^3.0.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"serverless-dotenv-plugin": "^3.0.0",
"serverless-offline": "^6.8.0",
"serverless-stack-output": "^0.2.3",
"serverless-webpack": "^5.3.3",
"ts-loader": "^8.0.2",
"typescript": "^4.0.3",
"webpack": "^4.44.2"
},
"husky": {
"hooks": {
"pre-commit": "sh ./scripts/pre-commit.sh"
}
}
}