-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.14 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
{
"name": "jobis",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"build": "nx build",
"build:many": "nx run-many -t build",
"build:affected": "npx nx affected -t build",
"graph": "nx run-many --target=build --graph",
"dev:storybook": "nx storybook @jobis/storybook",
"dev:packages": "nx run-many --target=dev --projects='@jobis/ui,@jobis/icons,@jobis/design-token'",
"prepare": "husky install",
"postinstall": "husky install && cp -a .husky/. .git/hooks/",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:styled": "stylelint './{apps,packages}/**/*.{js,ts,jsx,tsx}' --fix"
},
"lint-staged": {
"./{apps,packages}/**/*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --config .prettierrc.cjs --write -u",
"stylelint './{apps,packages}/**/*.{js,ts,jsx,tsx}' --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@nx/js": "17.2.3",
"@nx/workspace": "17.2.3",
"@storybook/addon-docs": "^7.6.10",
"@swc-node/register": "~1.6.7",
"@swc/core": "~1.3.85",
"@types/node": "^20.11.16",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vercel/remote-nx": "^1.1.1",
"@yarnpkg/pnpify": "^4.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-unicorn": "^50.0.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"nx": "17.2.7",
"postcss": "^8.4.33",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"typescript": "5.0.3"
},
"workspaces": [
"apps/**/*",
"packages/**/*"
],
"packageManager": "[email protected]",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.1.34"
}
}