-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 KB
/
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": "socobo-project-backend",
"version": "0.1.1",
"description": "NodeJS Backend for Socobo Project",
"author": "flashback2k14",
"license": "MIT",
"private": true,
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "./node_modules/.bin/mocha --recursive --no-timeouts --reporter spec",
"test-local": "./node_modules/.bin/mocha --watch --recursive --no-timeouts --reporter spec",
"test-local-debug": "./node_modules/.bin/mocha --debug-brk --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/socobo/socobo-project-backend.git"
},
"bugs": {
"url": "https://github.com/socobo/socobo-project-backend/issues"
},
"homepage": "https://github.com/socobo/socobo-project-backend#readme",
"keywords": [
"socobo-project",
"socobo-project-backend"
],
"engines": {
"node": "4.2.4",
"npm": "3.6.0"
},
"dependencies": {
"body-parser": "^1.15.0",
"cors": "^2.7.1",
"express": "^4.13.4",
"nodemailer": "^2.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"node-mocks-http": "^1.5.2"
}
}