This repository has been archived by the owner on May 29, 2023. It is now read-only.
generated from blueambr/create-next-app-extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.15 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
{
"name": "@hotepp/next-ghost-blog",
"version": "0.0.1",
"description": "A progressive blog, made with Next.js and Ghost",
"repository": {
"type": "git",
"url": "https://github.com/hotepp/next-ghost-blog.git"
},
"keywords": [
"next",
"nextjs",
"ghost",
"blog"
],
"author": {
"name": "Vlad Gerasimovich",
"email": "[email protected]",
"url": "https://vladg.dev"
},
"license": "ISC",
"bugs": "https://github.com/hotepp/next-ghost-blog/issues",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@tryghost/content-api": "^1.5.13",
"bulma": "^0.9.3",
"clsx": "^1.1.1",
"date-fns": "^2.25.0",
"lazysizes": "^5.3.2",
"next": "^12.0.1",
"normalize.css": "^8.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"reframe.js": "^3.0.3",
"sharp": "^0.29.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.1.0",
"eslint-config-next": "^12.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-webpack-plugin": "^3.1.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"sass": "^1.43.4",
"stylelint": "^14.0.1",
"stylelint-config-standard-scss": "^2.0.0",
"stylelint-order": "^5.0.0",
"stylelint-webpack-plugin": "^3.0.1",
"typescript": "^4.4.4"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "lint-staged",
"prepare": "husky install",
"start": "next start"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead"
],
"lint-staged": {
"src/**/*.{js,jsx}": [
"pretty-quick --pattern './src/**/*.{js,jsx}'",
"eslint './src/**/*.{js,jsx}' --fix"
],
"src/**/*.{css,sass,scss}": [
"stylelint './src/**/*.{css,sass,scss}' --fix"
]
}
}