-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "grapevine",
"version": "1.0.0",
"description": "An app that creates a calendar from scraping social media.",
"scripts": {
"start": "node_modules/coffee-script/bin/coffee server/social-media-api/server.coffee & node_modules/coffee-script/bin/coffee server/grapevine-api/server.coffee",
"test": "node_modules/mocha/bin/mocha --compilers coffee:coffee-script/register test --recursive --slow 4000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmucs/grapevine.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/lmucs/grapevine/issues"
},
"homepage": "https://github.com/lmucs/grapevine#readme",
"devDependencies": {
"mocha": "^2.3.3",
"should": "^7.1.0",
"sinon": "^1.17.1",
"supertest": "^1.1.0"
},
"dependencies": {
"async": "^1.5.0",
"body-parser": "^1.13.3",
"chai": "^3.4.1",
"chrono-node": "^1.0.8",
"coffee-script": "^1.10.0",
"dotenv-with-overload": "^0.5.1",
"express": "^4.13.3",
"jwt-simple": "^0.3.1",
"lodash": "^3.10.1",
"morgan": "^1.6.1",
"pg": "^4.4.2",
"request": "^2.61.0"
}
}