-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.5 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-skeleton",
"version": "1.0.0",
"description": "Opinionated skeleton for new TypeScript projects",
"scripts": {
"doc:install": "deven-documentation-skeleton install",
"doc:check": "deven-documentation-skeleton check",
"doc:update": "deven-documentation-skeleton update",
"start": "node ./dist/src/Index.js",
"dev": "ts-node-dev --respawn ./src/Index.ts",
"build": "rimraf dist && tsc",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jumace/typescript-skeleton.git"
},
"author": "Jumace",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jumace/typescript-skeleton/issues"
},
"homepage": "https://github.com/Jumace/typescript-skeleton#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@deven-org/documentation-skeleton": "^3.0.0",
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",
"@types/jest": "^29.5.12",
"eslint": "^9.9.1",
"eslint-config-love": "^89.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
}
}