-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.75 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
{
"homepage": "https://dtro-devuk.github.io/nextjs-gh-pages-example",
"name": "nextjs-gh-pages-example",
"description": "This example configures a simple Next 10 and Tailwind CSS styled app with routing for deployment to GitHub Pages repo",
"version": "1.0.0",
"private": false,
"license": "MIT",
"author": {
"name": "dtro-devuk"
},
"repository": {
"type": "git",
"url": "https://github.com/dtro-devuk/nextjs-gh-pages-example"
},
"engines": {
"node": "14.15.0"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"build:css": "tailwind build styles/global.css -o styles/site.css",
"deploy-local": "next build && next export && npx serve out",
"deploy-gp": "touch out/.nojekyll && git add -f out/ && git commit -m \"Deploy gh-pages\" && git subtree push --prefix out origin gh-pages",
"start": "next start"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"printWidth": 100,
"trailingComma": "es5",
"useTabs": false,
"semi": true,
"bracketSpacing": true
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-regular-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"next": "10.0.5",
"next-compose-plugins": "^2.2.0",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"autoprefixer": "^10.2.3",
"postcss": "^8.2.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"rimraf": "^3.0.2",
"tailwindcss": "^2.0.2"
}
}