-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (77 loc) · 2 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "Paradigmas",
"version": "1.0.0",
"description": "ZOO",
"main": "dist",
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src --presets es2015,stage-0\"",
"build": "babel src -s -D -d dist --presets es2015,stage-0",
"start": "node src",
"test": "export APP=test || SET \"NODE_ENV=test\" && mocha src/test/*.test.js --timeout 10000",
"test-watch": "nodemon --exec \"npm test\""
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
},
"engines": {
"node": "10.x"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/VergilSkye/Paradigmas"
},
"author": "Virgilio s <[email protected]>",
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.2",
"body-parser": "^1.13.3",
"compression": "^1.5.2",
"cookie-parser": "^1.4.3",
"cors": "^2.7.1",
"dotenv": "^6.1.0",
"express": "^4.13.3",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"jade": "^1.11.0",
"jsonwebtoken": "^8.3.0",
"mongodb": "^3.1.8",
"mongoose": "^5.3.6",
"morgan": "^1.8.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"resource-router-middleware": "^0.6.0",
"serve-favicon": "^2.5.0",
"validator": "^10.8.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"eslint": "^3.1.1",
"jest": "^23.6.0",
"mocha": "^5.2.0",
"nodemon": "^1.9.2",
"superagent": "^4.0.0-beta.5",
"supertest": "^3.3.0"
},
"bugs": {
"url": "https://github.com/VergilSkye/Paradigmas/issues"
},
"homepage": "https://github.com/VergilSkye/Paradigmas#readme"
}