-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "elixir-cloud-components",
"version": "1.2.0",
"description": "Stencil Component Starter",
"main": "dist/index.cjs.js",
"module": "dist/custom-elements/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/custom-elements/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/web-components/web-components.esm.js",
"homepage": "https://web-components-beta.vercel.app/",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "npm run build:css && stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"build:css": "tailwind build src/global/style.css -o src/global/app.css",
"deploy": "npm run build && gh-pages -d www"
},
"devDependencies": {
"@stencil/core": "^2.3.0",
"@stencil/postcss": "^2.0.0",
"@stencil/store": "^1.4.1",
"@types/jest": "^26.0.23",
"@types/puppeteer": "^5.4.3",
"@types/react": "^17.0.38",
"autoprefixer": "^10.2.6",
"gh-pages": "^5.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"puppeteer": "^23.5.0",
"stencil-router-v2": "^0.6.0",
"tailwindcss": "^2.1.4",
"workbox-build": "^7.0.0"
},
"license": "MIT",
"dependencies": {
"axios": "^1.7.4",
"react-tiny-popover": "^7.0.1"
}
}