This repository was archived by the owner on Mar 11, 2020. 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
72 lines (72 loc) · 1.98 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.98 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "perfectnote-api",
"version": "0.0.1",
"description": "PerfectNote's API, built with NodeJS, Express, and MongoDB.",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cringiest/grumpy.git"
},
"author": "PerfectNote",
"license": "GPL-3.0",
"private": false,
"keywords": [
"perfectnote",
"api",
"server"
],
"bugs": {
"url": "https://github.com/perfectnote/api/issues"
},
"homepage": "https://github.com/perfectnote/api",
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"clean": "prettier --write \"src/*.js\"",
"test": "mocha --require core-js/stable --require regenerator-runtime/runtime --require @babel/register --require test/it-helper.js --exit test/*.test.js"
},
"dependencies": {
"apollo-server-express": "^2.8.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"chai-as-promised": "^7.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-bearer-token": "^2.4.0",
"express-rate-limit": "^5.0.0",
"graphql": "^14.4.2",
"graphql-import": "^0.7.1",
"grumpy": "^0.2.3",
"helmet": "^3.20.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.6.9",
"morgan": "^1.9.1",
"node-fetch": "^2.6.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"qrcode": "^1.4.1",
"speakeasy": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@types/node": "^12.6.9",
"chai": "^4.2.0",
"core-js": "^3.1.4",
"eslint": "^6.1.0",
"mocha": "^6.2.0",
"mocha-prepare": "^0.1.0",
"mongo-unit": "^1.4.4",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"supertest": "^4.0.2"
},
"engines": {
"node": ">=8.0.0"
}
}