-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"type": "module",
"devDependencies": {
"concurrently": "^8.0.1"
},
"name": "lifely",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"ansi-regex": "^5.0.1",
"ansi-styles": "^4.3.0",
"chalk": "^4.1.2",
"cliui": "^8.0.1",
"color-convert": "^2.0.1",
"color-name": "^1.1.4",
"date-fns": "^2.29.3",
"emoji-regex": "^8.0.0",
"escalade": "^3.1.1",
"get-caller-file": "^2.0.5",
"has-flag": "^4.0.0",
"is-fullwidth-code-point": "^3.0.0",
"lodash": "^4.17.21",
"nodemon": "^2.0.22",
"react-toastify": "^9.1.2",
"require-directory": "^2.1.1",
"rxjs": "^7.8.0",
"shell-quote": "^1.8.0",
"spawn-command": "^0.0.2-1",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"supports-color": "^8.1.1",
"torch": "^0.2.7",
"transformers": "^3.1.0",
"tree-kill": "^1.2.2",
"tslib": "^2.5.0",
"webpack": "^5.89.0",
"wrap-ansi": "^7.0.0",
"y18n": "^5.0.8",
"yargs": "^17.7.1",
"yargs-parser": "^21.1.1"
},
"scripts": {
"start": "concurrently \"npm run fastapi\" \"npm run server\" \"npm run client\"",
"server": "cd server && nodemon index.js",
"client": "cd client && npm start",
"build": "cd client && npm run build",
"test": "cd client && npm test",
"fastapi": "cd fastapi && python -m uvicorn main:app --reload",
"install-deps": "cd fastapi && python -m pip install -r requirements.txt && cd ../ && npm i && cd server && npm i && cd ../client && npm i"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}