-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.66 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
{
"name": "create-express-app",
"version": "0.0.1",
"description": "",
"main": "server.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha app/**/bootstrap_spec.js app/**/*_spec.js --reporter spec",
"dev": "NODE_ENV=development nodemon server.js",
"predev": "eslint --ext .js .",
"pretest": "eslint --ext .js .",
"start": "NODE_ENV=production node server.js",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --fix --ext .js ."
},
"engines": {
"node": ">=7.6.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kasongoyo/nipale-api.git"
},
"author": "Isaac Kasongoyo",
"license": "MIT",
"bugs": {
"url": "https://github.com/kasongoyo/nipale-api/issues"
},
"homepage": "https://github.com/kasongoyo/nipale-api#readme",
"dependencies": {
"@casl/ability": "^3.0.2",
"@casl/mongoose": "^2.3.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-winston": "^3.1.0",
"http-errors": "^1.7.2",
"lodash": "^4.17.11",
"method-override": "^3.0.0",
"mkdir-p": "0.0.7",
"mongoose": "^5.4.21",
"mongoose-autopopulate": "^0.9.1",
"mongoose-errors": "^1.0.0",
"mongoose-paginate": "^5.0.3",
"require-all": "^3.0.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.8.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"faker": "^4.1.0",
"mocha": "^6.0.2",
"nodemon": "^1.18.10",
"superagent-defaults": "^0.1.14",
"supertest": "^4.0.2"
}
}