-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "ts-project-scaffolding",
"version": "1.0.0",
"description": "TS project Scaffolding",
"main": "src/index.ts",
"author": "mponsa",
"license": "MIT",
"private": true,
"scripts": {
"dev": "nodemon",
"lint": "eslint --cache --ext .js,.ts",
"prettier": "prettier --write ./src",
"prepare": "husky install",
"build": "tsc"
},
"dependencies": {
"dotenv": "^16.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/express": "^4.17.13",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.14.0",
"eslint-plugin-unicorn": "^43.0.2",
"husky": "^8.0.1",
"jest": "^28.1.3",
"nodemon": "^3.0.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}