-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.71 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.71 KB
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
{
"name": "next-starter",
"version": "3.0.0",
"description": "⏭ next.js starter",
"keywords": [
"typescript",
"react",
"eslint",
"prettier",
"jest",
"vercel",
"nextjs",
"heroicons",
"pwa"
],
"homepage": "https://next-starter-bradgarropy.vercel.app",
"bugs": {
"url": "https://github.com/bradgarropy/next-starter/issues"
},
"license": "MIT",
"author": {
"name": "Brad Garropy",
"email": "bradgarropy@gmail.com",
"url": "https://bradgarropy.com"
},
"repository": {
"type": "git",
"url": "https://github.com/bradgarropy/next-starter"
},
"scripts": {
"start": "next",
"build": "next build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"typecheck": "tsc",
"test": "jest --passWithNoTests",
"test:watch": "npm run test -- --watch",
"contributors": "all-contributors generate",
"new": "plop"
},
"dependencies": {
"@bradgarropy/next-google-analytics": "^1.0.2",
"@bradgarropy/next-link": "^1.1.0",
"@bradgarropy/next-seo": "^1.1.0",
"@heroicons/react": "^2.0.16",
"classnames": "^2.3.1",
"next": "^13.2.2",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@bradgarropy/eslint-config": "^1.1.0",
"@bradgarropy/eslint-config-react": "^1.0.0",
"@bradgarropy/eslint-config-typescript": "^1.0.1",
"@bradgarropy/plop-generator-react-component": "^1.0.1",
"@bradgarropy/plop-generator-react-context": "^1.0.0",
"@bradgarropy/plop-generator-react-hook": "^1.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.2.0",
"eslint-config-next": "^13.2.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"plop": "^2.7.4",
"prettier": "^2.3.2",
"react": "^18.2.0",
"regenerator-runtime": "^0.13.9",
"typescript": "^4.3.5"
}
}