-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
116 lines (116 loc) · 4.54 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
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@ptkdev/svelte-webcomponent-boilerplate",
"displayName": "Svelte WebComponent Boilerplate",
"description": "Create your HTML5 Web Component with Svelte. Made your web components with this friendly boilerplate",
"version": "1.0.20210404",
"main": "dist/webcomponent.js",
"publishConfig": {
"access": "public"
},
"author": "Patryk Rzucidło [@ptkdev] <[email protected]> (https://ptk.dev)",
"authorUrl": "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-webcomponent-boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/ptkdev-boilerplate/svelte-webcomponent-boilerplate.git"
},
"bugs": {
"url": "https://github.com/ptkdev-boilerplate/svelte-webcomponent-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": "sirv dist",
"dev": "ts-node scripts/configs.ts && ts-node scripts/debug.ts --enable && ts-node scripts/rmdist.ts && rollup -c -w",
"build": "ts-node scripts/configs.ts && ts-node scripts/rmdist.ts && rollup -c",
"release": "ts-node scripts/configs.ts && ts-node scripts/debug.ts --disable && npm run build && ts-node --skip-project scripts/license.ts && ttsc --declaration --emitDeclarationOnly && ts-node scripts/wordpress.ts",
"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 [email protected]:ptkdev-boilerplate/svelte-webcomponent-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"
},
"devDependencies": {
"@ptkdev/all-shields-cli": "^1.3.0",
"@ptkdev/logger": "^1.7.2",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@tsconfig/svelte": "^1.0.10",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"all-contributors-cli": "^6.20.0",
"chokidar": "^3.5.1",
"eslint": "^7.23.0",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsdoc": "^32.3.0",
"eslint-plugin-svelte3": "^3.1.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"json": "^10.0.0",
"markserv": "^1.17.4",
"node-sass": "^5.0.0",
"nunjucks": "^3.2.3",
"pm2": "^4.5.5",
"postcss": "^8.2.9",
"postcss-load-config": "^3.0.1",
"prettier": "^2.2.1",
"replace-in-file": "^6.2.0",
"rollup": "^2.44.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts-paths": "^1.0.5",
"rollup-plugin-typescript2": "^0.30.0",
"sass": "^1.32.8",
"shelljs": "^0.8.4",
"sirv-cli": "^1.0.11",
"svelte": "^3.36.0",
"svelte-check": "^1.3.0",
"svelte-preprocess": "^4.7.0",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"ttypescript": "^1.5.12",
"typescript": "^4.2.3",
"typescript-transform-paths": "^2.2.3",
"yargs": "^16.2.0"
},
"keywords": [
"ptkdev",
"svelte",
"svelte-webcomponents",
"webcomponents",
"html5-webcomponents",
"webcomponents-boilerplate",
"boilerplate"
],
"contributors": []
}