-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
105 lines (105 loc) · 2.71 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
{
"name": "create-nextjs-skeleton",
"version": "2.0.7-canary.0",
"license": "MIT",
"private": true,
"main": "scripts/create.mjs",
"author": "Jos Broers <jos@jobrodo.nl>",
"description": "A simple and highly customizable skeleton build with Turborepo and Next.js. Featuring ESLint, Husky, Prettier, Sass, TypeScript and much more!",
"homepage": "https://nextjs-skeleton.jobrodo.nl/",
"packageManager": "npm@8.5.0",
"bugs": {
"url": "https://github.com/josbroers/nextjs-skeleton/issues"
},
"keywords": [
"nextjs",
"skeleton"
],
"repository": {
"url": "https://github.com/josbroers/nextjs-skeleton.git",
"type": "git"
},
"publishConfig": {
"access": "public"
},
"bin": {
"create-nextjs-skeleton": "scripts/create.mjs"
},
"volta": {
"node": "18.12.1"
},
"engines": {
"node": "^18.0"
},
"scripts": {
"dev": "turbo next-dev",
"build": "turbo next-build",
"lint": "turbo next-lint",
"sitemap": "turbo next-sitemap",
"next-dev": "next dev",
"next-build": "next build",
"next-lint": "next lint && stylelint 'scss/**/*.scss'",
"next-sitemap": "next-sitemap",
"start": "next start",
"deploy": "turbo next-build next-lint next-sitemap",
"prepare": "husky install",
"make_public": "json -I -f package.json -e 'this.private=false'",
"update": "npx npm-check -u",
"copy_readme": "copy README.md scripts/create-project/",
"lerna": "npx lerna version --force-publish",
"volta-update": "volta pin node@^18.0"
},
"dependencies": {
"@next/font": "^13.1.1",
"@svgr/webpack": "^6.2",
"@vercel/og": "^0.0.21",
"next": "^13.1.1",
"next-sitemap": "^3.1.44",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"arg": "^5.0",
"autoprefixer": "^10.4",
"chalk": "^5.2.0",
"copy": "^0.3",
"edit-json-file": "^1.7",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "^8.6.0",
"eslint-config-turbo": "^0.0.7",
"husky": "^8.0.3",
"inquirer": "^9.0",
"json": "^11.0",
"lerna": "^6.3.0",
"listr": "^0.14",
"modern-normalize": "^1.1",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"sass": "^1.57.1",
"stylelint": "^14.16.1",
"stylelint-config-prettier-scss": "^0.0",
"stylelint-config-standard-scss": "^6.1",
"turbo": "^1.6",
"typescript": "^4.9.4"
},
"bundledDependencies": [
"arg",
"autoprefixer",
"chalk",
"copy",
"edit-json-file",
"inquirer"
],
"bundleDependencies": [
"arg",
"autoprefixer",
"chalk",
"copy",
"edit-json-file",
"inquirer"
]
}