generated from nfqde/nextjs-payloadcms-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
157 lines (157 loc) · 6.48 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "nextjs-template",
"version": "1.1.0",
"engines": {
"node": ">=20.0.0"
},
"private": true,
"standard-version": {
"scripts": {
"prebump": "nfqBump"
}
},
"sideEffects": [
"**/*.css"
],
"template": {
"version": "1.1.0",
"name": "nextjs-payloadcms-typescript-template",
"path": "https://github.com/nfqde/nextjs-payloadcms-typescript-template.git"
},
"scripts": {
"analyze": "cross-env ANALYZE=true FEATURE_ENV=live next build",
"analyze:browser": "cross-env ANALYZE=true BUNDLE_ANALYZE=browser FEATURE_ENV=live next build",
"analyze:server": "cross-env ANALYZE=true BUNDLE_ANALYZE=server FEATURE_ENV=live next build",
"build:live": "cross-env NODE_ENV=production FEATURE_ENV=live next build",
"build:stage": "cross-env NODE_ENV=production FEATURE_ENV=stage next build",
"build:test": "cross-env NODE_ENV=production FEATURE_ENV=test next build",
"check:types": "tsc -p .",
"deploy": "standard-version && git push --follow-tags origin main",
"dev": "python -t -m webbrowser https://payload.nfq.local && cross-env FEATURE_ENV=dev yarn next dev -p 3000",
"lint": "eslint ./src --ext='.js' --ext='.jsx' --ext='.ts' --ext='.tsx'",
"lint:report": "eslint --output-file eslint_report.json --format json --ext='.js, .jsx, .ts, .tsx' ./src",
"merge:files": "mochawesome-merge \"./cypress/reports/mochawesome*.json\" > \"./cypress/reports/index.json\"",
"start": "cross-env NODE_ENV=production next start -p 3000",
"start:test": "start-server-and-test 'yarn run start' http://localhost:3000 'yarn run test'",
"start:test:merge": "start-server-and-test 'yarn run start' http://localhost:3000 'yarn run test:merge'",
"test:open": "cross-env NODE_ENV=test yarn cypress open",
"test:cypress:ct": "cross-env NODE_ENV=test yarn cypress run --component && yarn merge:files",
"test:cypress:integration": "cross-env NODE_ENV=test yarn cypress run",
"test:merge": "yarn run test:cypress:integration && yarn run test:cypress:ct && yarn nfqReport",
"test": "yarn run test:cypress:integration && yarn run test:cypress:ct",
"generate:types": "cross-env PAYLOAD_CONFIG_PATH=src/server/payload/payload.config.ts payload generate:types && nfq-generate-types -f \"@app/features\" -j \"@nfq/feature-flags/jsx\" -i \"WithFeature\" -x \"WithoutFeature\" -e stage",
"storybook": "storybook dev -p 6006",
"build-storybook": "cross-env NODE_ENV=development FEATURE_ENV=stage storybook build",
"postinstall": "patch-package"
},
"dependencies": {
"@atelier-disko/payload-lexical-react-renderer": "^1.0.4",
"@nfq/autobind": "^1.1.3",
"@nfq/colors": "^2.0.4",
"@nfq/next-fonts": "^1.6.0",
"@nfq/react-grid": "^6.0.1",
"@nfq/typed-next-api": "1.5.5",
"@payloadcms/db-mongodb": "3.1.0",
"@payloadcms/live-preview-react": "3.1.0",
"@payloadcms/next": "3.1.0",
"@payloadcms/plugin-nested-docs": "3.1.0",
"@payloadcms/plugin-seo": "3.1.0",
"@payloadcms/richtext-lexical": "3.1.0",
"@payloadcms/richtext-slate": "3.1.0",
"@payloadcms/translations": "3.1.0",
"@payloadcms/ui": "3.1.0",
"framer-motion": "^11.11.17",
"graphql": "16.9.0",
"mobx": "^6.13.5",
"mobx-react-lite": "^4.0.7",
"next": "15.0.3",
"next-connect": "^1.0.0",
"patch-package": "^8.0.0",
"payload": "^3.1.0",
"postinstall-postinstall": "^2.1.0",
"react": "19.0.0-rc-65a56d0e-20241020",
"react-dom": "19.0.0-rc-65a56d0e-20241020",
"sharp": "^0.33.5",
"styled-components": "^6.1.13",
"swr": "^2.2.5"
},
"devDependencies": {
"@axe-core/react": "^4.10.1",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-class-static-block": "^7.26.0",
"@babel/plugin-transform-typescript": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@cypress/code-coverage": "^3.13.7",
"@next/bundle-analyzer": "15.0.3",
"@next/env": "15.0.3",
"@nfq/eslint-config": "^3.3.1",
"@nfq/eslint-plugin": "^0.8.2",
"@nfq/feature-flags": "3.2.0-next.15.0.0-canary.173.1",
"@nfq/storybook-github-issues": "^1.2.3",
"@nfq/test-reporter": "^1.1.5",
"@storybook/addon-essentials": "^8.4.5",
"@storybook/addon-links": "^8.4.5",
"@storybook/blocks": "^8.4.5",
"@storybook/nextjs": "^8.4.5",
"@storybook/react": "^8.4.5",
"@storybook/testing-library": "^0.2.2",
"@stryker-mutator/core": "^8.6.0",
"@stylistic/eslint-plugin-ts": "^2.11.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/cypress__code-coverage": "^3.10.2",
"@types/node": "^22.9.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"babel-loader": "^9.2.1",
"babel-plugin-istanbul": "^7.0.0",
"babel-plugin-styled-components": "^2.1.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"cross-env": "^7.0.3",
"cypress": "^13.16.0",
"cypress-real-events": "^1.13.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^8.57.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-array-func": "^4.0.0",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-unsanitized": "^4.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-perf-standard": "^1.0.3",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-hooks-ssr": "^0.1.5",
"eslint-plugin-redos": "4.5.0-beta.3",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-storybook": "^0.11.1",
"html-webpack-plugin": "^5.6.3",
"mocha": "^11.0.0",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.3.0",
"nyc": "^17.1.0",
"onecolor": "^4.1.0",
"react-is": "19.0.0-rc-65a56d0e-20241020",
"semver": "^7.6.3",
"start-server-and-test": "^2.0.8",
"storybook": "^8.4.5",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"resolutions": {
"react": "19.0.0-rc-65a56d0e-20241020",
"react-dom": "19.0.0-rc-65a56d0e-20241020"
}
}