-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 982 Bytes
/
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
{
"name": "typescript-project-starter",
"version": "1.0.0",
"description": "template files for typescript project",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"test": "mocha -r ts-node/register tests/**/*test.ts",
"lint": "eslint 'src/**/*.{js,ts}'",
"style": "npx prettier --write ."
},
"author": "Joone Hur",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/express": "^4.17.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"chai": "^4.2.0",
"eslint": "^8.57.0",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"dependencies": {
"@types/yargs": "^17.0.32",
"express": "^4.17.1",
"mongodb": "^5.8.0",
"reflect-metadata": "^0.2.1",
"typeorm": "^0.3.20",
"yargs": "^17.7.2"
}
}