forked from elyukai/optolith-webpage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "optolith-webpage",
"version": "1.0.0",
"description": "The webpage for Optolith Character Creator and Generator for TDE 5th Edition",
"main": "dist/server.js",
"scripts": {
"start": "node --experimental-modules ./dist/server.js",
"build": "tsc",
"build:watch": "tsc -w",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elyukai/optolith-webpage.git"
},
"author": "Lukas Obermann",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/elyukai/optolith-webpage/issues"
},
"homepage": "https://github.com/elyukai/optolith-webpage#readme",
"devDependencies": {
"@types/debug": "4.1.5",
"@types/koa": "2.0.52",
"@types/koa-static": "4.0.1",
"@types/koa__router": "8.0.2",
"@types/node": "12.12.9",
"@types/nunjucks": "3.1.3",
"nodemon": "1.19.4",
"typescript": "3.7.2"
},
"dependencies": {
"@koa/router": "8.0.2",
"debug": "4.1.1",
"koa": "2.11.0",
"koa-nunjucks-async": "1.2.0",
"koa-static": "5.0.0"
}
}