-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 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
{
"name": "cares",
"private": true,
"version": "1.0.0",
"description": "Monorepo for CARES web and mobile",
"scripts": {
"dev": "npm run dev --workspace=cares-web-frontend",
"build": "npm run clean-lib --workspace=@cares/common && npm run build --workspace=cares-web-frontend",
"lint:web": "npm run lint --workspace=cares-web-frontend",
"start:web": "npm run build && npm run dev",
"start:mobile": "npm run clean-lib --workspace=@cares/common && npm run start --workspace=cares-mobile"
},
"author": "nikitimi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Capstone-2023-2024/cares.git"
},
"bugs": {
"url": "https://github.com/Capstone-2023-2024/cares/issues"
},
"homepage": "https://github.com/Capstone-2023-2024/cares#readme",
"workspaces": [
"packages/web/cares-web-frontend",
"packages/libs/@cares/common"
],
"dependencies": {
"tailwindcss": "^3.3.2",
"react-native": "^0.72.7"
}
}