-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "@celljs/style-guide",
"version": "0.0.4",
"description": "Cellbang's engineering style guide",
"repository": "cellbang/style-guide",
"license": "MIT",
"type": "commonjs",
"files": [
"eslint",
"prettier",
"typescript.json"
],
"prettier": "./prettier/compact",
"scripts": {
"lint": "eslint . --fix && prettier -c **/*.js -w",
"release": "pnpm run test && changelogen --release && npm publish --registry=https://registry.npmjs.org --access=public && git push --follow-tags",
"test": "pnpm run lint"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.2.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-deprecation": "~2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-null": "latest",
"eslint-plugin-no-unsanitized": "latest",
"eslint-plugin-react": "^7.34.1",
"prettier-plugin-packagejson": "^2.5.0",
"globals": "^15.1.0"
},
"devDependencies": {
"changelogen": "^0.5.5",
"eslint": "^9.2.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"peerDependencies": {
"eslint": "*",
"typescript": "*"
}
}