-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
executable file
·98 lines (98 loc) · 2.97 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"author": "UIUX Lab",
"name": "uix-kit",
"email": "[email protected]",
"version": "5.2.0",
"projectName": "Uix Kit",
"createdInfo": "UIUX Lab (https://uiux.cc)",
"projectURL": "https://uiux.cc",
"description": "A free web kits for fast web design and development, compatible with Bootstrap v5.",
"main": "dist/js/uix-kit.js",
"directories": {
"example": "examples"
},
"scripts": {
"watch": "webpack --watch",
"preview": "cross-env NODE_ENV=development & node server.js & webpack-dev-server --open http://localhost:3000",
"build": "webpack --progress --mode production",
"prettier": "prettier \"./dist/css/uix-kit.css\"",
"prettier-rtl": "prettier \"./dist/css/uix-kit-rtl.css\"",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "uix-kit"
},
"keywords": [
"uix",
"kit",
"kits",
"typescript",
"front-end",
"webdesign",
"bootstrap",
"scaffold",
"webpack"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/xizon/uix-kit/issues"
},
"homepage": "https://github.com/xizon/uix-kit",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"babel-loader": "^9.1.2",
"babel-plugin-module-resolver": "^5.0.0",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"glob": "^10.4.1",
"glslify-loader": "^2.0.0",
"html-loader": "^4.2.0",
"include-file-webpack-plugin": "^1.0.3",
"json-loader": "^0.5.7",
"log-timestamp": "^0.3.0",
"mini-css-extract-plugin": "^2.7.3",
"moment": "^2.29.4",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-loader": "^3.3.0",
"random-string": "^0.2.0",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"tar": "^6.1.13",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-concat-files-plugin": "^0.5.2",
"webpack-dev-middleware": "^6.0.1",
"webpack-dev-server": "^4.11.1"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"requirePragma": false,
"proseWrap": "preserve"
}
}