-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 813 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 813 Bytes
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
{
"name": "create-svelte",
"version": "2.0.0-next.40",
"bin": "./bin",
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@sveltejs/adapter-node": "workspace:*",
"@sveltejs/kit": "workspace:*",
"gitignore-parser": "^0.0.2",
"kleur": "^4.1.4",
"prompts": "^2.4.0",
"rollup": "^2.41.1",
"tiny-glob": "^0.2.8"
},
"scripts": {
"dev": "rollup -cw",
"build": "node scripts/update-versions && rollup -c",
"lint": "eslint --ignore-path .gitignore --ignore-pattern template/ \"**/*.{ts,js,svelte}\" && npm run check-format",
"format": "prettier --write . --config ../../.prettierrc --ignore-path .gitignore",
"check-format": "prettier --check . --config ../../.prettierrc --ignore-path .gitignore",
"prepublishOnly": "npm run build"
},
"files": [
"template",
"ts-template"
]
}