forked from ryu-man/svantic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.21 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "svantic",
"version": "0.2.0",
"main": "./src/index.js",
"module": "./src/index.js",
"svelte": "./src/index.js",
"types": "./src/index.d.ts",
"description": "A set of Fomantic-UI components for Svelte framework",
"homepage": "https://github.com/ryu-man/svantic#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ryu-man/svantic.git"
},
"author": "ryu-man",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryu-man/svantic/issues"
},
"keywords": [
"html",
"css",
"ui",
"framework",
"svelte",
"component",
"fomantic",
"semantic"
],
"files": [
"src",
"semantic/dist/components/**/*.min.*"
],
"directories": {
"test": "test"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"validate": "svelte-check",
"pretty": "prettier --write \"src/**/*.{svelte,js,ts}\"",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build:fomantic": "cd node_modules/fomantic-ui && gulp install && gulp build"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.2",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/addon-svelte-csf": "^1.1.0",
"@storybook/builder-webpack5": "^6.3.7",
"@storybook/manager-webpack5": "^6.3.7",
"@storybook/svelte": "^6.3.7",
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.22",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/svelte": "^3.0.0",
"@types/jest": "^27.0.1",
"@types/jquery": "^3.5.6",
"@types/semantic-ui": "^2.2.7",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"fomantic-ui": "^2.8.7",
"gulp": "^4.0.2",
"jest": "^27.0.6",
"sirv": "^1.0.12",
"storybook-builder-vite": "^0.0.12",
"svelte": "^3.42.1",
"svelte-check": "^2.2.4",
"svelte-jester": "^2.0.1",
"svelte-layouts": "^0.9.5",
"svelte-loader": "^3.1.2",
"svelte-preprocess": "^4.7.4",
"vite": "^2.5.3"
},
"dependencies": {
"jquery": "^3.5.1"
},
"peerDependencies": {
"jquery": "^3.5.1"
}
}