-
-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
75 lines (75 loc) · 2.88 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
72
73
74
75
{
"name": "konsta",
"description": "Mobile UI components made with Tailwind CSS",
"version": "4.0.1",
"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)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"lint": "eslint --ext .js,.vue,.jsx .",
"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",
"build-sponsors": "node ./scripts/build-sponsors.js"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@material/material-color-utilities": "^0.2.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.6",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/compiler-sfc": "^3.4.38",
"autoprefixer": "^10.4.14",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-vue": "^9.27.0",
"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.41",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-router-dom": "^6.26.1",
"rollup": "^4.21.0",
"svelte": "^5.0.0-next.241",
"tailwindcss": "^3.4.10",
"vite": "^5.4.2",
"vue": "^3.4.38",
"vue-router": "^4.4.3"
},
"dependencies": {
"konsta": "file:src"
}
}