-
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.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 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": "typescript-backend-example",
"version": "1.0.0",
"description": "NodeJS TypeScript Backend Example",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && node ./dist/index.js",
"build": "rm -rf dist && tsc --project ./tsconfig.json && npm run copy:pugs",
"code:style": "tslint --config ./tslint.json --format stylish --type-check --project ./tsconfig.json",
"copy:pugs": "copy './src/**/*.pug' './dist'"
},
"author": "Robert Beretka <to.stoiet@gmail.com>",
"license": "MIT",
"dependencies": {
"http-errors": "1.6.2",
"jsonwebtoken": "8.0.1",
"koa": "2.3.0",
"koa-bodyparser": "4.2.0",
"koa-router": "7.2.1",
"pug": "2.0.0-rc.4",
"ramda": "0.24.1",
"source-map-support": "0.4.18"
},
"devDependencies": {
"@types/http-errors": "1.6.1",
"@types/jsonwebtoken": "7.2.3",
"@types/koa": "2.0.39",
"@types/koa-bodyparser": "3.0.25",
"@types/koa-router": "7.0.23",
"@types/pug": "2.0.4",
"@types/ramda": "0.24.11",
"@types/source-map-support": "0.4.0",
"copy": "0.3.1",
"tslib": "1.7.1",
"tslint": "5.7.0",
"typescript": "2.5.2"
},
"engines": {
"node": "8.5.0",
"npm": "5.4.2"
}
}