-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.05 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.05 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
{
"name": "animo-web",
"version": "1.0.0",
"description": "Animo fullstack app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start_client": "cd app && npm start",
"start_server": "cd server && npm start",
"dev_client": "cd server && npm run dev",
"dev_server": "cd app && npm run dev",
"start": "npm run start_server | npm run start_client",
"dev": "npm run dev_server | npm run dev_client",
"installclient": "cd app && npm install",
"installserver": "cd server && npm install",
"install": "npm run installclient && npm run installserver"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yairdana/Animo-Web.git"
},
"author": "Alon&Shira&Shir&Yair",
"license": "ISC",
"bugs": {
"url": "https://github.com/yairdana/Animo-Web/issues"
},
"homepage": "https://github.com/yairdana/Animo-Web#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^8.5.1",
"react-chatbot-kit": "^1.1.20"
}
}