-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 884 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
{
"name": "monorepo-fiu",
"version": "1.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently -k \"yarn components build -w\" \"yarn app1 start\" \"yarn app2 start\" \"yarn ws start\"",
"app1": "yarn workspace @fiu/app-1",
"app2": "yarn workspace @fiu/app-2",
"components": "yarn workspace @fiu/components",
"ws": "yarn workspace @fiu/ws"
},
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^3.4.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"concurrently": "^5.1.0",
"typescript": "~3.7.2"
}
}