forked from konstaui/konsta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.71 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
69
70
71
{
"name": "konsta",
"description": "Mobile UI components made with Tailwind CSS",
"version": "0.10.0",
"private": true,
"license": "MIT",
"author": "Vladimir Kharlampidi",
"scripts": {
"build": "cross-env NODE_ENV=production node scripts/build",
"/*============ React Kitchen Sink ============*/": "============",
"react": "cross-env NODE_ENV=development vite ./kitchen-sink/react",
"build-react-ks": "cross-env NODE_ENV=production vite build ./kitchen-sink/react",
"/*============ Vue Kitchen Sink ============*/": "============",
"vue": "cross-env NODE_ENV=development vite ./kitchen-sink/vue",
"build-vue-ks": "cross-env NODE_ENV=production vite build ./kitchen-sink/vue",
"/*============ Svelte Kitchen Sink ============*/": "============",
"svelte": "cross-env NODE_ENV=development vite ./kitchen-sink/svelte",
"build-svelte-ks": "cross-env NODE_ENV=production vite build ./kitchen-sink/svelte",
"/*============ Dev tools ============*/": "============",
"prettier": "prettier \"**/*.+(js|json|scss|css|less|ts|vue|svelte)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"lint": "eslint --ext .js,.vue,.jsx,.svelte .",
"validate": "npm-run-all --parallel check-format lint",
"release": "npm run validate && node ./scripts/release",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -u -s"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.41",
"@vitejs/plugin-react-refresh": "^1.3.6",
"@vitejs/plugin-vue": "^2.3.1",
"autoprefixer": "^10.4.4",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-svelte3": "^3.4.1",
"eslint-plugin-vue": "^7.19.1",
"exec-sh": "^0.4.0",
"framework7-icons": "^5.0.5",
"fs-extra": "^10.0.1",
"history": "^5.3.0",
"inquirer": "^8.2.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.3.1",
"react-router-dom": "^6.3.0",
"svelte": "^3.47.0",
"svelte-navigator": "^3.1.5",
"tailwindcss": "^3.0.24",
"vite": "^2.9.5",
"vue": "^3.2.33",
"vue-router": "^4.0.14"
},
"dependencies": {
"konsta": "file:src"
}
}