This repository was archived by the owner on Oct 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.59 KB
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
{
"name": "note-keeper-server",
"version": "1.0.0",
"description": "",
"main": "./application/index.js",
"private": true,
"scripts": {
"dev": "bash ./config/bin/server",
"test": "npm run lint && npm run test:unit && npm run test:e2e",
"test:unit": "bash ./config/bin/test-unit",
"test:e2e": "bash ./config/bin/test-e2e",
"lint": "eslint --cache -c .eslintrc --ext .jsx,.js application tests",
"apib": "aglio --theme-template default -i doc/note-keeper.apib -o doc/note-keeper.html",
"apib:live": "aglio -s --theme-template default -i doc/note-keeper.apib -o doc/note-keeper.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "1.18.2",
"config": "1.29.0",
"crypto-js": "3.1.9-1",
"express": "4.16.2",
"hashids": "1.1.4",
"helmet": "3.9.0",
"jimp": "0.2.28",
"jsonwebtoken": "8.1.0",
"mongoose": "5.0.6",
"mongoose-paginate": "5.0.3",
"mongoose-unique-validator": "2.0.0",
"morgan": "1.9.0",
"nanoid": "0.1.1",
"node-metainspector": "git+https://github.com/dshster/node-metainspector.git",
"passport": "0.4.0",
"passport-jwt": "3.0.1",
"request": "2.83.0",
"request-promise": "4.2.2",
"winston": "3.0.0-rc1"
},
"engines": {
"node": ">=6.9",
"npm": ">=4.0"
},
"devDependencies": {
"aglio": "2.3.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.5.1",
"jest": "22.0.3",
"nock": "9.1.5",
"supertest": "3.0.0"
}
}