-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.78 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
56
57
58
59
60
{
"name": "huffman-javascript",
"description": "huffman-javascript monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "npm -w packages/core run build && npm -w website run dev",
"build": "npm -w packages/core run build",
"lint": "eslint . --fix --ext .js,.ts, --color",
"format": "prettier --write '**/*.{scss,css,json,ts,tsx,js}'",
"test": "jest",
"test:coverage": "jest --coverage",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^16.10.2",
"@rollup/plugin-typescript": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.26.1",
"husky": "^8.0.0",
"jest": "^29.2.2",
"lint-staged": "^13.0.3",
"prettier": "^2.4.1",
"release-it": "^14.11.6",
"rollup": "^3.2.3",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"turbo": "^1.6.1",
"typescript": "^4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|jsx|ts|tsx)": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/kelreel/huffman-javascript"
},
"workspaces": [
"packages/*",
"website"
]
}