-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "arktos-api",
"version": "1.0.0",
"description": "An express.js API that powers the Arktos Task Manager",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"dev": "nodemon src/index.js --exec babel-node -e js",
"clean": "rm -rf dist",
"build": "npm run clean && babel ./src --out-dir dist --copy-files",
"prod": "node ./dist/index.js",
"lint": "eslint --fix src",
"test": "mocha --exit"
},
"keywords": [],
"author": "Drew Franz (https://drewfra.nz)",
"repository": {
"type": "git",
"url": "https://github.com/drewfranzj/arktos-api.git"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"core-js": "^3.8.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-jwt-authz": "^2.4.1",
"helmet": "^4.4.1",
"jwks-rsa": "^1.12.2",
"mongoose": "^5.11.14",
"morgan": "^1.10.0",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/node": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
},
"engines": {
"node": "14.x"
}
}