-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "yeuai-voice-recorder",
"version": "1.0.0",
"description": "Kites TypeScript starter repository",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "ts-node-dev --respawn --transpileOnly ./app.ts",
"start:prod": "node dist/app.js",
"build": "tsc -p tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kitesjs/typescript-starter.git"
},
"keywords": [
"kitesjs",
"starter"
],
"author": "vunb",
"license": "MIT",
"bugs": {
"url": "https://github.com/kitesjs/typescript-starter/issues"
},
"homepage": "https://github.com/kitesjs/typescript-starter#readme",
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/mkdirp": "^0.5.2",
"@types/multer": "^1.3.9",
"@types/supertest": "^2.0.8",
"jest": "^24.8.0",
"ts-node-dev": "^1.0.0-pre.40",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"@kites/common": "^1.1.5",
"@kites/core": "^1.1.5",
"@kites/express": "^1.1.5",
"@kites/rest": "^1.1.5",
"mkdirp": "^0.5.1",
"multer": "^1.4.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2"
}
}