-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "koa-ts-contacts-app",
"version": "0.0.1",
"description": "Building a simple contact management application API using Node.js, TypeScript, Koa.js",
"main": "server.js",
"scripts": {
"clean": "del ./dist",
"lint": "tslint --project ./tsconfig.json --fix",
"build": "tsc",
"test": "jest",
"server": "node ./dist/index.js",
"watch:build": "tsc --watch",
"watch:lint": "chokidar ./**/*.ts --initial --silent -c 'npm -s run lint'",
"watch:test": "CI=true jest --watch",
"watch:server": "nodemon -w ./ -x npm run server",
"dev": "concurrently --names 'BUILD,TEST,LINT,SERVER' -c 'yello,cyan,blue,magenta' 'npm run watch:build' 'npm run watch:test' 'npm run watch:lint' 'npm run watch:server'",
"start": "npm run clean && npm run lint && npm run build && npm run server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zoltan-nz/koa-ts-contacts-app.git"
},
"author": "Zoltan",
"license": "MIT",
"bugs": {
"url": "https://github.com/zoltan-nz/koa-ts-contacts-app/issues"
},
"homepage": "https://github.com/zoltan-nz/koa-ts-contacts-app#readme",
"devDependencies": {
"@types/jest": "^21.1.8",
"@types/koa": "^2.0.42",
"@types/koa-bodyparser": "^3.0.26",
"@types/koa-router": "^7.0.27",
"@types/node": "^8.5.1",
"@types/superagent": "^3.5.6",
"@types/supertest": "^2.0.4",
"chokidar": "^1.7.0",
"concurrently": "^3.5.1",
"del": "^3.0.0",
"jest": "^21.2.1",
"nodemon": "^1.12.7",
"supertest": "^3.0.0",
"ts-jest": "^21.2.4",
"ts-node": "^4.0.1",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"dependencies": {
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.3.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}