-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.25 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
{
"name": "elektron",
"version": "0.7.2",
"description": "An Admin Layout",
"main": "dist/elektron.js",
"browser": "dist/elektron.js",
"unpkg": "dist/elektron.min.js",
"jsdelivr": "dist/elektron.min.js",
"style": "dist/elektron.css",
"sass": "scss/elektron.scss",
"type":"module",
"scripts": {
"css": "sass scss/elektron.scss dist/elektron.css -s compressed",
"css:dev": "sass scss:public/assets/css -w",
"js": "npm-run-all js-lint js-compile js-minify",
"js-lint": "eslint js",
"js-compile": "rollup -c",
"js:dev": "rollup -c -w",
"js-minify": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/elektron.js.map,includeSources,url=elektron.min.js.map\" --output dist/elektron.min.js dist/elektron.js",
"dist": "npm-run-all --parallel css js",
"watch": "npm-run-all --parallel watch-css watch-js",
"watch-css": "nodemon --ignore docs/ --ignore js --ignore dist/ -e scss -x \"npm run css\"",
"watch-js": "nodemon --ignore scss/ --ignore scss --ignore dist/ -e js -x \"npm run js\"",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onokumus/elektron.git"
},
"keywords": [
"admin",
"layout",
"elektron"
],
"author": "Osman Nuri Okumus <[email protected]> (https://github.com/onokumus)",
"contributors": [
"githubwyj <[email protected]> (https://github.com/githubwyj)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/onokumus/elektron/issues"
},
"homepage": "https://github.com/onokumus/elektron#readme",
"files": [
"dist/",
"js/",
"scss/",
"README.md"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"dependencies": {
"astro": "^2.9.0",
"metismenujs": "^1.4.0",
"onoffcanvas": "^2.3.1",
"open-props": "^1.5.10"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"rollup": "^3.26.3",
"sass": "^1.64.0",
"uglify-js": "^3.17.4"
}
}