generated from okanaslan/Typescript-Node-Starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "node-starter-ts",
"version": "1.0.0",
"description": "Node.js starter package written in Typescript.",
"main": "index.js",
"scripts": {
"start": "ts-node src/app.ts",
"test": "jest",
"format": "prettier --config .prettierrc.json --write .",
"lint": "eslint . --ext .ts",
"build": "tsc -p ./tsconfig.json",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "4.17.17",
"@types/selenium-webdriver": "4.1.13",
"dotenv": "16.0.3",
"express": "4.18.2",
"mongoose": "7.0.1",
"selenium-webdriver": "*",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"devDependencies": {
"@types/jest": "29.4.0",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"eslint": "8.35.0",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.1.2",
"prettier": "^2.8.4",
"supertest": "6.3.3",
"ts-jest": "29.0.5"
},
"lint-staged": {
"*.{js,json,ts}": [
"eslint . --ext .ts",
"npm run format"
]
}
}