-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 944 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
{
"name": "you-farm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "cd server && yarn install && cd ../client && yarn install && yarn run build && cd ../model && pip install -r requirement.txt",
"server": "npm run dev --prefix server",
"client": "npm run dev --prefix client",
"model": "cd model && python app.py --prefix model",
"dev": "concurrently \"npm run server\" \"npm run client\" \"npm run model\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-cracked/you-farm.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/code-cracked/you-farm/issues"
},
"homepage": "https://github.com/code-cracked/you-farm#readme",
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@material-ui/icons": "^4.11.3",
"@mui/material": "^5.11.15"
}
}