-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (45 loc) · 1.14 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
{
"name": "Snoopy-chat-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"backend": "nodemon server.js",
"install":"cd client && npm install",
"frontend": "npm run start --prefix client",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"build": "cd client && npm run build"
},
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Archivaldi/Snoopy-chat-bot.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Archivaldi/Snoopy-chat-bot/issues"
},
"homepage": "https://github.com/Archivaldi/Snoopy-chat-bot#readme",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "1.19.0",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"dialogflow": "0.14.0",
"express": "4.17.1",
"material-design-icons": "^3.0.1",
"react-color": "^2.17.3",
"react-slideshow-image": "^1.3.1",
"request": "^2.88.0"
},
"devDependencies": {
"concurrently": "5.0.0",
"nodemon": "1.19.4"
}
}