-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 837 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 837 Bytes
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
{
"name": "@hyperjump/starwars",
"version": "0.1.0",
"description": "An demo API for the JRef media type and the Hyperjump browser",
"type": "module",
"scripts": {
"clean": "cat .gitignore | xargs rm -rf",
"lint": "eslint src",
"dev": "nodemon src/server.js",
"start": "node src/server.js"
},
"repository": "github:hyperjump-io/swapi.hyperjump.io",
"keywords": [
"Hyperjump",
"JSON Reference",
"JRef",
"REST",
"Hypermedia",
"swapi"
],
"author": "Jason Desrosiers <jdesrosi@gmail.com>",
"license": "MIT",
"dependencies": {
"@awaitjs/express": "^0.9.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"nodemon": "*",
"eslint": "*",
"eslint-import-resolver-node": "*",
"eslint-plugin-import": "*"
}
}