-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "root",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*",
"services/*",
"libs/*",
"infrastructure/*"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/aws-lambda": "^8.10.63",
"@types/jest": "^26.0.14",
"@types/luxon": "^2.0.7",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"husky": "^4.3.0",
"jest": "26.6.0",
"jest-dynalite": "^3.4.4",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"prettier": "2.1.2",
"rollup": "^2.28.2",
"rollup-plugin-typescript2": "^0.27.3",
"serverless": "^2.5.0",
"serverless-rollup-plugin": "^2.1.0",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.5.4"
},
"scripts": {
"test": "jest",
"build:apps": "lerna run build --scope @townhub-apps/* --include-dependencies --",
"build:libs": "lerna run build --scope @townhub-libs/* --sort --",
"deploy:services": "lerna run deploy --scope @townhub-services/* --"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"luxon": "^2.1.1"
}
}