-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
34 lines (34 loc) · 1002 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "lerna run dev --parallel --stream",
"start": "lerna run start --parallel --stream",
"test": "jest -w=2",
"test:ci": "yarn test --ci --coverage --maxWorkers=2",
"test:watch": "yarn test --watch",
"lint": "lerna run lint --parallel --stream",
"build": "lerna run build --stream",
"prepare": "lerna run prepare --stream"
},
"devDependencies": {
"@types/faker": "^5.5.8",
"@typescript-eslint/eslint-plugin": "^4.1.0 ",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^6.6.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-jest-dom": "^3.1.7",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-testing-library": "^3.6.0",
"faker": "^5.5.3",
"lerna": "^4.0.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^17.0.1",
"scheduler": "^0.20.1",
"tsdx": "^0.14.0"
}
}