-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "node ./build/build.js && tsc",
"start": "ts-node-dev --respawn --transpileOnly ./src/app.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ejs": "^2.6.1",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-nunjucks-2": "^3.0.2",
"koa-router": "^7.2.1",
"koa-static": "^4.0.1",
"koa-views": "^6.1.4",
"log4js": "^3.0.5",
"mime": "^1.3.6",
"nunjucks": "^3.1.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^5.0.1",
"@types/koa-router": "^7.0.31",
"@types/koa-static": "^4.0.0",
"@types/koa-views": "^2.0.3",
"@types/mkdirp": "^0.5.2",
"@types/mz": "0.0.32",
"@types/node": "^8.0.47",
"@types/nunjucks": "^3.1.0",
"@types/shelljs": "^0.8.0",
"@types/uuid": "^3.4.4",
"mz": "^2.7.0",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"ts-node-dev": "^1.0.0-pre.30",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"typescript": "^3.0.3"
}
}