-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 954 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "plex",
"version": "1.0.0",
"engines": {
"node": "4.6.1",
"npm": "2.15.9"
},
"description": "Conversational bot backend.",
"main": "server.js",
"keywords": [
"Amazon",
"Lex",
"chatbot",
"bot"
],
"author": "Yarely Chino, Hugo Argueta, Will Czubiak",
"license": "ISC",
"private": true,
"dependencies": {
"apiai": "^4.0.0",
"axios": "^0.15.3",
"body-parser": "^1.16.1",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"express": "^4.14.1",
"mocha": "^3.2.0",
"mongoose": "^4.8.4",
"node-sass": "^4.5.0",
"path": "^0.12.7",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^3.0.2",
"react-scripts": "0.9.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "./node_modules/.bin/mocha --reporter spec",
"eject": "react-scripts eject",
"heroku-postbuild": "npm run build"
}
}