-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "crossorig.in",
"version": "2.0.0",
"description": "",
"main": "server/server.js",
"scripts": {
"test": "NODE_ENV=test mocha --recursive --timeout 3000",
"start": "node server/entryPoint.js",
"dev": "nodemon server/entryPoint.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hdf1986/crossorig.in.git"
},
"author": "Hugo Farji & Tomas Diaco & Leonardo Galante",
"license": "ISC",
"bugs": {
"url": "https://github.com/hdf1986/crossorig.in/issues"
},
"homepage": "https://github.com/hdf1986/crossorig.in#readme",
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.2",
"request": "^2.81.0",
"request-promise": "^4.2.2",
"rollbar": "^2.3.9"
},
"engines": {
"node": ">=9.2.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"nodemon": "^1.19.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "^5.0.0",
"prettier": "^1.17.1"
}
}