-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.87 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
{
"name": "mono",
"author": "Peter Evers",
"version": "1.0.0",
"description": "Monorepo for bundling Serverless with Webpack and Typescript",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc -b ./services",
"test": "lerna run test --",
"deploy": "lerna run deploy --stream",
"rm": "lerna run rm --stream",
"lint": "eslint . --ext js,ts --cache --fix",
"prettier": "prettier --write .",
"clean": "yarn run clean-dist && yarn run clean-output && yarn run clean-logs",
"clean-incl-deps": "yarn run clean && yarn run clean-deps",
"clean-output": "rm -fr output && rm -fr */**/output",
"clean-dist": "rm -fr services/*/**/dist && rm -fr services/*/**/.serverless && rm -fr services/*/**/.webpackCache",
"clean-deps": "rm -fr node_modules && rm -fr services/*/**/node_modules && rm -f yarn.lock && rm -fr */**/yarn.lock",
"clean-logs": "rm -f *.log && rm -fr */**/*.log",
"prepare": "husky install"
},
"workspaces": {
"packages": [
"services/*",
"common/*",
"libs/*"
],
"nohoist": [
"**/@prisma/client"
]
},
"lint-staged": {
"*.{js,ts,json,css,md}": [
"yarn run prettier"
],
"*.ts": [
"yarn run lint"
]
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"cache-loader": "^4.1.0",
"copy-webpack-plugin": "^9.0.0",
"eslint": "^7.27.0",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"husky": "^6.0.0",
"jest": "^27.0.3",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"prisma": "^2.23.0",
"serverless-webpack": "^5.5.0",
"ts-jest": "^27.0.1",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"webpack": "^5.38.0",
"webpack-node-externals": "^3.0.0"
}
}