forked from rstropek/Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "0010-demo-api",
"version": "1.0.0",
"description": "",
"main": "./dist/server.js",
"scripts": {
"build": "tsc && cpx src/**/*.html dist",
"watch": "concurrently \"tsc --watch\" \"nodemon ./dist/server.js\" \"cpx src/**/*.html dist --watch\"",
"start": "node dist/server.js",
"clean": "trash ./dist && trash ./dist-test",
"test": "tsc -p tsconfig-test.json && jasmine"
},
"author": "",
"license": "ISC",
"dependencies": {
"http-status-codes": "^1.3.0",
"jasmine": "^3.1.0",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-views": "^6.1.4",
"nunjucks": "^3.1.2"
},
"devDependencies": {
"@koa/cors": "^2.2.1",
"@types/http-status-codes": "^1.2.0",
"@types/koa": "^2.0.44",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-logger": "^3.1.0",
"@types/koa-router": "^7.0.27",
"@types/koa-views": "^2.0.3",
"@types/koa__cors": "^2.2.2",
"@types/nunjucks": "^3.0.0",
"@types/jasmine": "^2.8.6",
"concurrently": "^3.5.1",
"cpx": "^1.5.0",
"nodemon": "^1.17.1",
"trash-cli": "^1.4.0",
"typescript": "^2.7.2"
}
}