-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
43
44
45
46
{
"name": "voting",
"version": "1.0.0",
"description": "Una aplicación para realizar encuestas",
"main": "server/server.js",
"dependencies": {
"body-parser": "^1.9.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"crypto-js": "^3.1.9-1",
"express": "^4.15.2",
"i18n": "^0.8.3",
"jsonwebtoken": "^7.3.0",
"moment": "^2.17.1",
"mongodb": "^2.2.24",
"mongoose": "^4.8.6",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"request-ip": "^2.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"mocha": "^3.2.0",
"mockgoose": "^7.1.1"
},
"scripts": {
"test": "set NODE_TEST=1;&& mocha test/**/*.js -c -t 120000",
"start": "node server/index.js"
},
"author": "Ulian",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ulian/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ulian/voting.git"
},
"homepage": "https://github.com/Ulian/voting#readme"
}