-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 KB
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
{
"name": "base-typescript-code",
"version": "0.0.1",
"description": "Base TypeScript repo for GDP Labs project developed using TypeScript",
"main": "src/index.ts",
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage",
"prettier": "prettier src --check",
"prettier-fix": "prettier src --write",
"lint": "./node_modules/.bin/eslint src --ext .js,.ts,.tsx",
"lint-fix": "./node_modules/.bin/eslint --fix src --ext .js,.ts,.tsx",
"generate-docs": "npx typedoc --entryPointStrategy expand ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GDP-ADMIN/base-typescript-code.git"
},
"keywords": [
"typescript"
],
"author": "GDP Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/GDP-ADMIN/base-typescript-code/issues"
},
"homepage": "https://github.com/GDP-ADMIN/base-typescript-code#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}