-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
68 lines (67 loc) · 2.05 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
{
"name": "svelte-custom-element",
"version": "0.1.0",
"description": "",
"main": "dist/svelte-custom-element.js",
"scripts": {
"build": "node ./scripts/build.js",
"lint": "eslint --ext .js --ext .svelte src/",
"start": "npm run storybook",
"storybook": "start-storybook -s ./.storybook/static -p 8086",
"test": "jest src --passWithNoTests && npm run build",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-replace": "^2.3.3",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addon-storysource": "^6.2.9",
"@storybook/addon-viewport": "^6.2.9",
"@storybook/svelte": "^6.2.9",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.1.0",
"eslint": "^7.11.0",
"jest": "^26.6.0",
"node-sass": "^5.0.0",
"postcss": "^8.1.0",
"postcss-load-config": "^3.0.0",
"prettier": "^2.1.2",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.0",
"sass": "^1.26.11",
"sass-loader": "^10.0.3",
"shelljs": "^0.8.4",
"svelte": "^3.38.2",
"svelte-i18n": "^3.1.0",
"svelte-loader": "^3.1.1",
"svelte-preprocess": "^4.7.3"
},
"dependencies": {
"@babel/runtime": "^7.12.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redradix/svelte-custom-element-boilerplate.git"
},
"keywords": [
"svelte",
"custom-elements",
"boilerplate"
],
"author": "monkeyandres",
"license": "ISC",
"bugs": {
"url": "https://github.com/redradix/svelte-custom-element-boilerplate/issues"
},
"homepage": "https://github.com/redradix/svelte-custom-element-boilerplate#readme"
}