forked from erkobridee/nx-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.89 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
{
"name": "nx-nextjs",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"husky:uninstall": "npx rimraf .husky && git config --unset core.hooksPath",
"husky:install": "npx husky install",
"husky:config:pre-commit": "npx husky add .husky/pre-commit \"npx lint-staged\"",
"husky": "npx run-s husky:install husky:config:pre-commit",
"prepare": "npx is-ci || npm run husky",
"prettify": "npx prettier --write .",
"check:lint": "npx nx run-many --target=lint --all",
"check:ts-check": "npx nx run-many --target=ts-check --all",
"check": "npx run-s prettify check:lint check:ts-check",
"nx": "npx nx",
"start": "npx nx serve",
"build": "npx nx build",
"test": "npx nx test",
"lint": "npx nx workspace-lint && npx nx lint",
"e2e": "npx nx e2e",
"affected:apps": "npx nx affected:apps",
"affected:libs": "npx nx affected:libs",
"affected:build": "npx nx affected:build",
"affected:e2e": "npx nx affected:e2e",
"affected:test": "npx nx affected:test",
"affected:lint": "npx nx affected:lint",
"affected:dep-graph": "npx nx affected:dep-graph",
"affected": "npx nx affected",
"format": "npx nx format:write",
"format:write": "npx nx format:write",
"format:check": "npx nx format:check",
"update": "npx nx migrate latest",
"workspace-schematic": "npx nx workspace-schematic",
"dep-graph": "npx nx dep-graph",
"help": "npx nx help",
"clean:dist": "npx rimraf dist",
"clean:tmp": "npx rimraf tmp",
"clean:cache": "npx rimraf node_modules/.cache",
"clean": "npx run-p clean:dist clean:tmp clean:cache"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,md,html,css,scss}": "npx prettier --write",
"**/*.{js,jsx,ts,tsx}": "npx eslint --fix"
},
"private": true,
"dependencies": {
"document-register-element": "1.13.1",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@nrwl/cli": "13.3.4",
"@nrwl/cypress": "13.3.4",
"@nrwl/eslint-plugin-nx": "13.3.4",
"@nrwl/jest": "13.3.4",
"@nrwl/next": "13.3.4",
"@nrwl/react": "13.3.4",
"@nrwl/storybook": "13.3.4",
"@nrwl/tao": "13.3.4",
"@nrwl/web": "13.3.4",
"@nrwl/workspace": "13.3.4",
"@storybook/addon-a11y": "^6.3.1",
"@storybook/addon-actions": "^6.3.1",
"@storybook/addon-essentials": "6.4.9",
"@storybook/addons": "^6.3.1",
"@storybook/builder-webpack5": "6.4.9",
"@storybook/manager-webpack5": "6.4.9",
"@storybook/react": "6.4.9",
"@svgr/webpack": "^5.4.0",
"@testing-library/react": "12.1.2",
"@types/jest": "27.0.2",
"@types/node": "14.17.17",
"@types/react": "17.0.30",
"@types/react-dom": "17.0.9",
"@types/webpack": "4.41.21",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "^4.28.5",
"autoprefixer": "^10.4.0",
"babel-jest": "27.2.3",
"babel-loader": "8.1.0",
"cypress": "^5.5.0",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"fs-extra": "^9.0.1",
"husky": "7.0.2",
"is-ci": "3.0.0",
"jest": "27.2.3",
"lint-staged": "11.1.2",
"npm-run-all2": "5.0.2",
"postcss": "^8.4.5",
"postcss-import": "14.0.2",
"postcss-loader": "^4.1.0",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"sass": "^1.29.0",
"tailwindcss": "^3.0.3",
"ts-jest": "27.0.5",
"ts-node": "9.1.1",
"tslib": "^2.1.0",
"typescript": "4.4.2",
"url-loader": "^3.0.0",
"webpack": "^5.59.1"
}
}