This repository was archived by the owner on Sep 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.32 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "courseapi-fe",
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@7.5.0",
"engines": {
"node": "^16"
},
"license": "GPL-3.0-or-later",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "xo"
},
"private": true,
"devDependencies": {
"@nrwl/cli": "14.2.4",
"@nrwl/eslint-plugin-nx": "^14.4.2",
"@nrwl/js": "^14.4.2",
"@nrwl/next": "^14.3.6",
"@nrwl/nx-cloud": "^14.2.0",
"@nrwl/react": "^14.4.2",
"@nrwl/storybook": "14.2.4",
"@nrwl/web": "14.2.4",
"@nrwl/workspace": "14.2.4",
"@svgr/webpack": "^6.2.1",
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.210",
"@types/lodash-es": "^4.17.6",
"@types/node": "17.0.42",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"eslint-config-xo": "^0.41.0",
"eslint-config-xo-nextjs": "^4.2.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"nx": "14.2.4",
"prettier": "^2.7.1",
"tslib": "^2.4.0",
"type-fest": "^2.16.0",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"vite": "^2.9.13",
"webpack": "^5.73.0",
"xo": "^0.50.0"
},
"dependencies": {
"@ladle/react": "^1.2.0",
"@nrwl/next": "14.3.6",
"@swc/helpers": "^0.3.17",
"autoprefixer": "^10.4.7",
"classnames": "^2.3.1",
"core-js": "^3.23.3",
"ladle": "^0.0.0",
"lodash-es": "^4.17.21",
"next": "^12.2.0",
"postcss": "^8.4.14",
"react": "18.1.0",
"react-dom": "18.1.0",
"regenerator-runtime": "0.13.9",
"tailwindcss": "^3.1.4",
"tslib": "^2.0.0"
},
"xo": {
"plugins": [
"simple-import-sort",
"@nrwl/nx"
],
"prettier": true,
"rules": {
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"@nrwl/nx/enforce-module-boundaries": "error"
},
"overrides": [
{
"files": [
"libs/components/**/*.tsx",
"libs/icons/**/*.tsx",
"apps/app/**/*.tsx"
],
"extends": "xo-react",
"rules": {
"@typescript-eslint/consistent-type-imports": "warn",
"import/no-extraneous-dependencies": "off",
"react/require-default-props": "off",
"import/extensions": "off"
}
}
]
},
"prettier": {
"semi": true,
"useTabs": true,
"tabWidth": 2,
"trailingComma": "all",
"singleQuote": true,
"bracketSpacing": true
}
}