-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "lotus-ipsum",
"version": "0.0.1",
"description": "Yet another Lorem Ipsum generator. This one based off of the popular card game, Magic the Gathering.",
"main": "app.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node app",
"start:dev": "nodemon app",
"deploy": "fly deploy"
},
"engines": {
"node": "19.3.0",
"npm": "9.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krab7191/lotus-ipsum.git"
},
"keywords": [
"MTG",
"lorem",
"ipsum",
"magic",
"gathering"
],
"author": "Karsten Rabe (https://github.com/krab7191)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/krab7191/lotus-ipsum/issues"
},
"homepage": "https://github.com/krab7191/lotus-ipsum#readme",
"dependencies": {
"express": "^4.17.1",
"morgan": "^1.9.1",
"if-env": "^1.0.4",
"nodemon": "^2.0.21"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.0"
}
}