-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.76 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
49
50
51
52
53
54
55
{
"name": "hextatic",
"private": true,
"version": "1.0.0",
"description": "Basic tool for flat hexagonal grids",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/antoinefricker/hextatic.git"
},
"author": "Antoine Fricker <antoine.fricker@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint ./packages/**/src",
"lint:fix": "eslint ./packages/**/src --ext .ts,.tsx --fix",
"format": "prettier \"src/**/*.{ts,tsx}\" --write",
"test": "yarn workspaces run test",
"typecheck": "yarn workspaces run typecheck",
"prepare": "husky",
"gh": "open https://github.com/antoinefricker/hextatic.git",
"d2": "yarn workspace @hextatic/d2 dev"
},
"husky": {
"hooks": {
"commit-msg": "",
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"*.+(js|ts|jsx|tsx)": "eslint --cache --fix",
"*.+(js|ts|jsx|tsx|md|json)": "prettier --write"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@stylistic/eslint-plugin": "^2.7.2",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"open": "^10.1.0",
"prettier": "^3.3.3"
},
"workspaces": [
"./packages/hextatic",
"./packages/d2"
]
}