-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 996 Bytes
/
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
{
"name": "root",
"private": true,
"license": "MIT",
"scripts": {
"start": "lerna run start --parallel",
"build": "lerna run build --parallel",
"publish:packages": "lerna publish",
"test": "CI=true jest",
"typecheck": "lerna run typecheck --parallel",
"lint": "lerna run lint --parallel",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\" --ignore-path .gitignore"
},
"devDependencies": {
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"jest": "^27.4.5",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"packageManager": "[email protected]",
"dependencies": {
"faker": "^5.5.3"
}
}