-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "satellite-api",
"version": "0.1.0",
"description": "An API for determining visibility of satellites given TLE data",
"main": "server.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"debug": "ndb src/server.js",
"test": "jest -i --colors --verbose",
"test:watch": "jest -i --watchAll",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"predeploy": "yarn audit",
"deploy": "git push heroku development:master"
},
"keywords": [],
"author": "Michael Wedd",
"license": "MIT",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-mongo-sanitize": "^2.1.0",
"helmet": "^4.6.0",
"http-status": "^1.5.0",
"joi": "^17.4.1",
"mongoose": "^5.13.5",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"satellite.js": "^4.1.3",
"validator": "^13.6.0",
"winston": "^3.3.3",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-security": "^1.4.0",
"faker": "^5.1.0",
"jest": "^27.0.6",
"node-mocks-http": "^1.10.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"supertest": "^6.1.4"
}
}