-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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": "typescript-boilerplate",
"version": "1.0.0",
"scripts": {
"build": "rm -rf dist/ && tsc -P tsconfig.json && tsc-alias -p tsconfig.default.json && cp newrelic.js dist/",
"postversion": "bash ./scripts.sh sonar",
"pretest": "pnpm lint:fix && prettier --write ./src ./resource",
"start": "nodemon",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"lint:fix": "pnpm run lint -- --fix",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"dotenv": "^16.4.5"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@faker-js/faker": "^8.4.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.8.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "6.4.0",
"globals": "^15.9.0",
"husky": "9.1.5",
"jest": "29.7.0",
"nodemon": "3.1.4",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4",
"typescript-eslint": "^7.16.0"
}
}