-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.65 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
{
"name": "@thelabnyc/standards",
"version": "0.4.1",
"description": "Standardization utilities for thelabnyc projects",
"scripts": {
"build": "tsc",
"check:lint-commits": "commitlint --from ${CI_MERGE_REQUEST_DIFF_BASE_SHA:-HEAD~10}",
"check:lint-js": "eslint .",
"check": "npm run check:lint-commits && npm run check:lint-js",
"prepack": "npm run build"
},
"author": "thelab <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/thelabnyc/standards"
},
"homepage": "https://gitlab.com/thelabnyc/standards",
"license": "ISC",
"bin": {
"install-thelab-standards": "./bin/install.sh"
},
"dependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.16.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"markdownlint-cli": "^0.43.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.1",
"stylelint": "^16.11.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^6.10.0",
"typescript-eslint": "^8.16.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.10.1",
"typescript": "^5.7.2"
}
}