-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.9 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.9 KB
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
{
"name": "@wordproof/uikit",
"version": "1.0.50",
"description": "WordProof Component library",
"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/uikit/uikit.esm.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "NODE_ENV=production stencil build --docs",
"build:nodocs": "NODE_ENV=production stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"release": "npm run test && npm run build && (git add . && git commit -m'auto generate components docs'); npm version patch",
"mock": "json-server src/mocks/db.json"
},
"dependencies": {
"@stencil/core": "2.9.0",
"autoprefixer": "^10.2.3",
"classnames": "^2.2.6",
"date-fns": "^2.19.0",
"diff": "^5.0.0",
"js-sha256": "^0.9.0",
"postcss": "^8.2.4",
"tailwindcss": "^2.0.2"
},
"license": "MIT",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.0.0",
"@stencil/postcss": "^2.0.0",
"@types/classnames": "^2.2.11",
"@types/diff": "^5.0.0",
"@types/faker": "^5.1.6",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/puppeteer": "^5.4.0",
"cssnano": "^4.1.10",
"faker": "^5.3.1",
"fetch-mock-jest": "^1.5.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"json-server": "^0.16.3",
"markdown-it-include": "^2.0.0",
"puppeteer": "^5.4.1",
"vuepress": "^1.8.0",
"vuepress-plugin-mermaidjs": "^1.8.1"
}
}