-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.7 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "seed",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"start-all": "nx serve --all",
"test": "nx test",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@nrwl/next": "15.2.1",
"celebrate": "^15.0.1",
"core-js": "^3.26.1",
"daisyui": "^2.41.0",
"express": "4.18.2",
"gray-matter": "^4.0.3",
"netlify-cms-app": "^2.15.72",
"next": "13.0.4",
"next-mdx-remote": "^4.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"regenerator-runtime": "0.13.11",
"tslib": "^2.4.1"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@nrwl/cli": "15.2.1",
"@nrwl/cypress": "15.2.1",
"@nrwl/devkit": "15.2.1",
"@nrwl/eslint-plugin-nx": "15.2.1",
"@nrwl/express": "^15.2.1",
"@nrwl/jest": "15.2.1",
"@nrwl/linter": "15.2.1",
"@nrwl/node": "15.2.1",
"@nrwl/nx-cloud": "latest",
"@nrwl/react": "15.2.1",
"@nrwl/storybook": "15.2.1",
"@nrwl/web": "15.2.1",
"@nrwl/workspace": "15.2.1",
"@storybook/addon-essentials": "~6.5.13",
"@storybook/builder-webpack5": "~6.5.13",
"@storybook/core-server": "~6.5.13",
"@storybook/manager-webpack5": "~6.5.13",
"@storybook/react": "~6.5.13",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/typography": "^0.5.8",
"@testing-library/react": "13.4.0",
"@types/express": "4.17.14",
"@types/jest": "29.2.3",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "~5.44.0",
"@typescript-eslint/parser": "~5.44.0",
"autoprefixer": "^10.4.13",
"babel-jest": "29.3.1",
"babel-loader": "9.1.0",
"chokidar": "^3.5.3",
"cypress": "^11.2.0",
"eslint": "~8.28.0",
"eslint-config-next": "13.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"http-proxy-middleware": "^2.0.6",
"husky": "^8.0.2",
"jest": "29.3.1",
"lint-staged": "^13.0.3",
"nx": "15.2.1",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"react-test-renderer": "18.2.0",
"tailwindcss": "^3.2.4",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "~4.9.3",
"url-loader": "^4.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,md,mdx,json,html,css}": [
"nx format --uncommitted"
],
"*.{js,ts,tsx}": [
"nx affected:lint --uncommitted --fix --parallel"
]
}
}