This repository has been archived by the owner on May 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 2.02 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "eslint-kit",
"version": "0.0.1",
"description": "A collection of useful eslint configs",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test",
"test:update": "lerna run test -- -u",
"commit": "git-cz",
"lint": "eslint \"packages/**/*.ts\" \"shared/**/*.ts\" --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eslint-kit/eslint-config-kit.git"
},
"keywords": [
"eslint",
"config",
"kit",
"node",
"react",
"typescript",
"ts",
"prettier"
],
"author": "risenforces",
"license": "MIT",
"bugs": {
"url": "https://github.com/eslint-kit/eslint-config-kit/issues"
},
"homepage": "https://github.com/eslint-kit/eslint-config-kit#readme",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.13.0",
"@changesets/cli": "^2.16.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^27.4.1",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.2",
"cz-customizable": "^6.3.0",
"eslint": "7.32.0",
"eslint-plugin-prettier": "^3.1.2",
"execa": "^4.0.2",
"find": "^0.3.0",
"glob": "^7.1.6",
"husky": "^6.0.0",
"jest": "^27.5.1",
"jest-serializer-path": "^0.1.15",
"lerna": "^3.22.1",
"lint-staged": "^11.0.0",
"prettier": "2.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.16.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^6.1.0",
"ts-jest": "^27.1.3",
"typescript": "^4.3.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}