-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 4.12 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
{
"name": "next13-boilerplate",
"version": "1.0.0",
"private": true,
"author": {
"name": "Abdulnasir OLCAN",
"portfolio": "https://abdulnasirolcan.vercel.app",
"url": "https://github.com/jsdeveloperr"
},
"scripts": {
"dev": "env-cmd -f .env.local next dev",
"dev:dev": "env-cmd -f .env.development next dev",
"dev:test": "env-cmd -f .env.test next dev",
"dev:stage": "env-cmd -f .env.staging next dev",
"dev:prod": "env-cmd -f .env.production next dev",
"dev:uat": "env-cmd -f .env.uat next dev",
"build": "next build",
"build:dev": "env-cmd -f .env.development run-s clean build",
"build:test": "env-cmd -f .env.test run-s clean build",
"build:stage": "env-cmd -f .env.staging run-s clean build",
"build:prod": "env-cmd -f .env.production run-s clean build",
"build:uat": "env-cmd -f .env.uat run-s clean build",
"start": "next start",
"start:dev": "env-cmd -f .env.development run-s clean build start",
"start:test": "env-cmd -f .env.test run-s clean build start",
"start:stage": "env-cmd -f .env.staging run-s clean build start",
"start:prod": "env-cmd -f .env.production run-s clean build start",
"start:uat": "env-cmd -f .env.uat run-s clean build start",
"docker:dev:start": "make start-development",
"docker:dev:build": "make build-development",
"docker:dev:stop": "make stop-development",
"docker:test:start": "make start-test",
"docker:test:build": "make build-test",
"docker:test:stop": "make stop-test",
"docker:stage:start": "make start-staging",
"docker:stage:build": "make build-staging",
"docker:stage:stop": "make stop-staging",
"docker:prod:start": "make start-production",
"docker:prod:build": "make build-production",
"docker:prod:stop": "make stop-production",
"analyze": "rimraf .next/analyze && ANALYZE=true env-cmd -f .env.production --fallback --silent pnpm build",
"clean": "rimraf .next",
"lint": "next lint",
"lint:fix": "pnpm lint --fix",
"test": "jest",
"format": "prettier \"./**/*.{ts,tsx}\" --write",
"check": "eslint --ext .ts,.tsx/ --fix",
"generate": "pnpm plop --plopfile ./generators/plopfile.js",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^2.9.10",
"@redux-saga/core": "^1.2.2",
"@reduxjs/toolkit": "^1.9.1",
"@tailwindcss/line-clamp": "^0.4.2",
"axios": "^1.2.1",
"classnames": "^2.3.2",
"html-react-parser": "^3.0.4",
"next": "^13.0.6",
"next-redux-wrapper": "^8.0.0",
"next-seo": "^5.15.0",
"next-useragent": "^2.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.40.0",
"react-lazy-loader-component": "^0.1.2",
"react-redux": "^8.0.5",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.0.6",
"@svgr/webpack": "^6.5.1",
"@swc/core": "^1.3.22",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/next-redux-wrapper": "^3.0.0",
"@types/node": "^18.11.13",
"@types/react": "^18.0.26",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.14",
"env-cmd": "^10.1.0",
"eslint": "^8.29.0",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.7.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"plop": "^3.1.1",
"postcss": "^8.4.19",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"sass": "^1.56.2",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}