-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
104 lines (104 loc) · 3.82 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
{
"name": "@ptkdev/svelte-kit-ssr-boilerplate",
"displayName": "Svelte KIT Boilerplate",
"description": "Svelte server-side-rendering built with SEO in mind. Start your project with this friendly svelte kit boilerplate",
"version": "1.0.20210516",
"main": "build/index.js",
"publishConfig": {
"access": "public"
},
"author": "Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev)",
"license": "MIT",
"license-docs": "CC BY 4.0",
"license-translations": "CC BY 4.0",
"license-images": "CC BY-NC 4.0",
"homepage": "https://github.com/ptkdev-boilerplate/svelte-kit-ssr-boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/ptkdev-boilerplate/svelte-kit-ssr-boilerplate.git"
},
"type": "module",
"bugs": {
"url": "https://github.com/ptkdev-boilerplate/svelte-kit-ssr-boilerplate/issues"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"init": "npm install && husky install",
"setup": "ts-node --skip-project scripts/setup.ts && ts-node --skip-project scripts/changelog.ts && npm run pre-commit",
"start": "svelte-kit preview -p 5000",
"dev": "svelte-kit dev -p 5000",
"dev-https": "mkcert localhost && svelte-kit dev -p 5000 -H",
"build": "svelte-kit build",
"release": "npm run build && ttsc --declaration --emitDeclarationOnly",
"test": "jest app",
"docs": "git submodule update --recursive && markserv ./README.md",
"lint": "npm run lint-prettify && eslint . --cache --ext .ts,.js",
"lint-fix": "npm run lint-prettify && eslint . --cache --ext .ts,.js --fix",
"lint-prettify": "prettier --write **/*.{ts,scss,md,json}",
"git-set-upstream": "git remote add upstream git@github.com:ptkdev-boilerplate/svelte-kit-ssr-boilerplate.git && git fetch upstream",
"git-pull-upstream": "git pull upstream main && git pull upstream beta && git pull upstream nightly",
"git-pull": "git pull --recursive",
"git-ignore-reset": "git rm -r --cached . && git add . && git commit -m \"[Fix] Removing all files in .gitignore\"",
"npm-publish-main": "git checkout main && npm publish",
"npm-publish-beta": "git checkout beta && npm publish --tag beta",
"npm-publish-nightly": "git checkout nightly && npm publish --tag nightly",
"contributors-generate": "all-contributors generate",
"all-shields-generate": "all-shields-generate",
"pre-commit": "npm run contributors-generate && npm run all-shields-generate && npm run lint-fix && npm run test",
"pkg-clean": "rm -rf node_modules package-lock.json && npm install && husky install",
"pkg-update": "npm update",
"pkg-upgrade": "npx npm-check-updates -u && npm install && husky install"
},
"dependencies": {
"bulma": "^0.9.2",
"bulma-extensions": "^6.2.7"
},
"devDependencies": {
"@ptkdev/all-shields-cli": "^2.0.2",
"@ptkdev/logger": "^1.7.2",
"@sveltejs/adapter-node": "next",
"@sveltejs/adapter-static": "next",
"@sveltejs/kit": "next",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.3",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"all-contributors-cli": "^6.20.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsdoc": "^34.0.2",
"eslint-plugin-svelte3": "^3.2.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"json": "^11.0.0",
"markserv": "^1.17.4",
"pm2": "^4.5.6",
"prettier": "^2.3.0",
"prettier-plugin-svelte": "^2.3.0",
"replace-in-file": "^6.2.0",
"sass": "^1.32.13",
"shelljs": "^0.8.4",
"svelte": "^3.38.2",
"svelte-check": "^1.5.3",
"svelte-preprocess": "^4.7.3",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"ttypescript": "^1.5.12",
"typescript": "^4.2.4",
"vite": "^2.3.2",
"yargs": "^17.0.1"
},
"keywords": [
"ptkdev",
"svelte",
"svelte-boilerplate",
"svelte-kit",
"svelte-kit-boilerplate"
],
"contributors": []
}