-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 992 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 992 Bytes
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
{
"name": "root",
"private": true,
"workspaces": [
"libs/utils/",
"libs/logger/",
"libs/common/",
"libs/external-clients/",
"libs/middleware"
],
"lint-staged": {
"**/*.{ts,tsx}": "tslint"
},
"devDependencies": {
"lerna": "^6.5.1"
},
"scripts": {
"build:libs": "npm run clean; npm ci; lerna run build --concurrency 1",
"clean": "npm run clean:node_modules; npm run clean:build",
"clean:lock:files": "find . -name 'package-lock.json' -type f -prune -print -exec rm -rf '{}' \\;",
"clean:build": "find . -name 'build' -o -name 'dist' -type d -prune -print -exec rm -rf '{}' \\;",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \\;",
"lint": "lerna run lint",
"test": "lerna run test",
"start:anonymous": "lerna run start --scope=anonymous"
},
"dependencies": {
"@fontsource/poppins": "^5.0.3",
"@testing-library/dom": "^9.2.0",
"react-dom": "^18.2.0"
}
}