-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"private": true,
"version": "1.0.0",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint --ext .ts packages/*/src/**.ts",
"format": "pretty-quick --staged --pattern \"packages/**/*.ts?(x)\"",
"dev:rgb": "nodemon packages/core/src/RGB.ts --exec 'esno'",
"dev:hsl": "nodemon packages/core/src/hsl.ts --exec 'esno'",
"dev:utils": "nodemon packages/core/src/utils.ts --exec 'esno'"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"pretty-quick"
],
"*.ts?(x)": [
"eslint",
"pretty-quick"
]
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@color-utils/color": "workspace:*",
"@color-utils/colors": "workspace:*",
"@color-utils/core": "workspace:*",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-jest": "^28.0.2",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.0.2",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}