-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (25 loc) · 786 Bytes
/
package.json
File metadata and controls
26 lines (25 loc) · 786 Bytes
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
{
"name": "chatterbot",
"version": "0.0.1",
"description": "An attempt at a chatbot with a memory that can recognize user input phrases and respond meaningfully",
"author": {
"name": "Eric Connelly",
"email": "eric.connelly08@gmail.com"
},
"private": true,
"dependencies": {
"angular": "1.x",
"bower": "^1.3.1",
"express": "4.x",
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-concat": "~0.5.0",
"grunt-contrib-jshint": "~0.10.0",
"node-neo4j": "2.0.0-RC6"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "./node_modules/nodemon/bin/nodemon.js server.js --apihost=localhost --apiport=8888"
}
}