-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
125 lines (125 loc) · 3.91 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"private": true,
"name": "nx-nextjs",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"unset:git-hooks-path": "git config --unset core.hooksPath",
"simple-git-hooks": "npx simple-git-hooks",
"prepare": "is-ci || npm run simple-git-hooks",
"prettify": "prettier --write .",
"check:updates": "ncu",
"check:lint": "nx run-many --target=lint --all",
"check:ts-check": "nx run-many --target=ts-check --all",
"check": "run-s prettify check:lint check:ts-check",
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"clean:dist": "rimraf dist",
"clean:tmp": "rimraf tmp",
"clean:cache": "rimraf node_modules/.cache",
"clean": "run-p clean:dist clean:tmp clean:cache"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,md,html,css,scss}": "prettier --write",
"**/*.{js,jsx,ts,tsx}": "eslint --fix"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"dependencies": {
"next": "12.2.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-transform-runtime": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@nrwl/cli": "14.5.10",
"@nrwl/cypress": "14.5.10",
"@nrwl/eslint-plugin-nx": "14.5.10",
"@nrwl/jest": "14.5.10",
"@nrwl/linter": "14.5.10",
"@nrwl/next": "14.5.10",
"@nrwl/react": "14.5.10",
"@nrwl/storybook": "14.5.10",
"@nrwl/web": "14.5.10",
"@nrwl/workspace": "14.5.10",
"@storybook/addon-a11y": "6.5.10",
"@storybook/addon-actions": "6.5.10",
"@storybook/addon-essentials": "6.5.10",
"@storybook/addons": "6.5.10",
"@storybook/builder-webpack5": "6.5.10",
"@storybook/core": "6.5.10",
"@storybook/manager-webpack5": "6.5.10",
"@storybook/react": "6.5.10",
"@svgr/webpack": "6.2.1",
"@testing-library/react": "13.3.0",
"@types/jest": "28.1.4",
"@types/node": "18.7.5",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"autoprefixer": "10.4.8",
"babel-jest": "28.1.2",
"babel-loader": "8.2.5",
"cypress": "10.2.0",
"dotenv": "10.0.0",
"eslint": "8.19.0",
"eslint-config-next": "12.2.3",
"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.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.4",
"fs-extra": "9.0.1",
"is-ci": "3.0.1",
"jest": "28.1.2",
"jest-environment-jsdom": "28.1.2",
"lint-staged": "13.0.3",
"npm-check-updates": "15.2.6",
"npm-run-all2": "6.0.1",
"nx": "14.5.10",
"postcss": "8.4.16",
"postcss-import": "14.1.0",
"postcss-loader": "7.0.0",
"prettier": "2.7.1",
"react-test-renderer": "18.0.0",
"rimraf": "3.0.2",
"sass": "1.54.0",
"serve": "14.0.1",
"simple-git-hooks": "2.8.0",
"tailwindcss": "3.1.8",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"tslib": "2.1.0",
"typescript": "4.7.4",
"url-loader": "3.0.0",
"webpack": "5.59.1"
}
}