This repository was archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.72 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": "svelte-flat",
"version": "0.2.0-alpha.7",
"description": "Flat UI Components with Svelte",
"main": "lib/index.js",
"author": "Jikkai Xiao <sonne@asaki.me>",
"license": "MIT",
"scripts": {
"clean": "rimraf ./lib && rimraf ./docs",
"build:entry": "webpack --config build/webpack.prod.js",
"build:components": "webpack --config build/webpack.components.js",
"build:css": "gulp css",
"build:docs": "webpack --config build/webpack.doc.js",
"dev": "nodemon build/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jikkai/svelte-flat.git"
},
"bugs": {
"url": "https://github.com/jikkai/svelte-flat/issues"
},
"homepage": "https://jikkai.github.io/svelte-flat",
"keywords": [
"svelte",
"flat-ui",
"components"
],
"dependencies": {
"feather-icons": "^3.3.0"
},
"devDependencies": {
"babel-core": "^7.0.0-beta.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^7.0.0-beta.3",
"css-loader": "^0.28.7",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"gulp": "^3.9.1",
"gulp-postcss": "^7.0.0",
"happypack": "^4.0.0",
"highlightjs": "^9.10.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"markdown-loader": "^2.0.1",
"nodemon": "^1.12.1",
"postcss-color-mix": "^1.1.0",
"postcss-loader": "^2.0.8",
"postcss-salad": "^2.0.1",
"progress-bar-webpack-plugin": "^1.10.0",
"rimraf": "^2.6.2",
"style-loader": "^0.19.0",
"svelte": "^1.41.3",
"svelte-loader": "^2.1.0",
"svelte-router": "^1.6.0",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0"
}
}