-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
{
"name": "starbase",
"version": "4.0.0",
"author": "Brian Staruk <brian@staruk.net>",
"contributors": [
{
"name": "Brian Staruk",
"email": "brian@staruk.net",
"url": "https://brian.staruk.net"
}
],
"description": "Production-ready static website boilerplate, featuring Webpack 5, TypeScript, PostCSS & Tailwind CSS.",
"homepage": "https://github.com/bstaruk/starbase",
"repository": {
"type": "git",
"url": "https://github.com/bstaruk/starbase.git"
},
"bugs": {
"url": "https://github.com/bstaruk/starbase/issues",
"email": "brian@staruk.net"
},
"license": "MIT",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"files": [
"dist",
"template"
],
"scripts": {
"build": "tsc",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}'",
"lint": "eslint .",
"start": "tsc && node ./dist/index.js"
},
"dependencies": {
"fs-extra": "^11.2.0",
"picocolors": "^1.0.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.4.3",
"typescript-eslint": "^7.4.0"
},
"engines": {
"node": ">=20"
}
}