-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 868 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 868 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
27
28
29
30
31
32
33
34
35
36
37
{
"name": "thesis-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 10000",
"start": "node index.js",
"dev": "nodemon index.js",
"back": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamBoosted/server.git"
},
"author": "Daniel Kang",
"license": "ISC",
"bugs": {
"url": "https://github.com/TeamBoosted/server/issues"
},
"homepage": "https://github.com/TeamBoosted/server#readme",
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"redis": "^2.8.0",
"watson-developer-cloud": "^3.12.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"mocha": "^5.2.0",
"supertest": "^3.3.0"
}
}