-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
46
47
48
{
"name": "template-repos-ts",
"version": "1.0.0",
"description": "Template repository for using TypeScript",
"type": "module",
"scripts": {
"test": "vitest",
"build": "tsc",
"watch": "tsc -w",
"pretest": "yarn build",
"prebuild": "rimraf dist",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --fix",
"lint:format": "prettier --write '**/*.{ts,js,json,md,yml}'",
"prepare": "husky"
},
"author": "Dev Protocol",
"license": "MPL-2.0",
"dependencies": {
"ramda": "0.30.1"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/dotenv": "8.2.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "22.10.7",
"@types/ramda": "0.30.2",
"dotenv": "16.4.7",
"eslint": "^9.12.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-functional": "^8.0.0",
"globals": "^15.11.0",
"husky": "9.1.7",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"typescript": "5.7.3",
"typescript-eslint": "^8.9.0",
"vitest": "^3.0.0"
},
"repository": "git+https://github.com/dev-protocol/template-repos-ts.git",
"bugs": {
"url": "https://github.com/dev-protocol/template-repos-ts/issues"
},
"homepage": "https://github.com/dev-protocol/template-repos-ts#readme",
"private": true,
"packageManager": "yarn@4.6.0"
}