-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.37 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
{
"name": "nextjs-13-boilerplate",
"version": "0.0.1",
"author": "Sakil Khan",
"private": true,
"license": "MIT",
"engines": {
"node": ">=18",
"npm": ">=9",
"yarn": "please use npm instead of yarn",
"pnpm": "please use npm instead of pnpm"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"dev:turbo": "next dev --turbo",
"build:stats": "cross-env ANALYZE=true npm run build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"prettier": "prettier --write 'src/**/*.{ts,tsx,js,jsx}'",
"clean": "npx rimraf .next node_modules",
"test": "jest",
"test:watch": "jest --watch",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless"
},
"dependencies": {
"next": "13.4.5",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@percy/cypress": "^3.1.2",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/eslint": "^8.40.1",
"@types/jest": "^29.5.2",
"@types/node": "20.3.0",
"@types/prettier": "^2.7.3",
"@types/react": "18.2.11",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"autoprefixer": "10.4.14",
"cross-env": "^7.0.3",
"cypress": "^12.14.0",
"eslint": "8.42.0",
"eslint-config-next": "13.4.5",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-dom": "^5.0.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-testing-library": "^5.11.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.3.0",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.1",
"start-server-and-test": "^2.0.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.3"
}
}