-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.73 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
99
100
101
102
103
104
105
106
{
"name": "sgnuikit",
"version": "1.2.5",
"description": "SGNUIKit is a very powerful UI kit designed to allow web developers use the power of the kit to build efficient and beautiful websites. SGNUIKit is currently being used in all the websites by SGNetworks.",
"homepage": "https://sgnuikit.cdn.sgnetworks.eu.org",
"author": {
"name": "SGNetworks",
"email": "[email protected]",
"url": "https://sgnetworks.eu.org"
},
"license": "SGN CS License v1.0",
"readme": "https://github.com/SGNetworksIndia/SGNUIKit/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/SGNetworksIndia/SGNUIKit"
},
"bugs": {
"url": "https://github.com/SGNetworksIndia/SGNUIKit/issues",
"email": "[email protected]"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-inject": "^5.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@types/jquery": "^3.5.16",
"archiver": "^5.3.1",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"conventional-github-releaser": "^3.1.5",
"conventional-recommended-bump": "^6.1.0",
"css-url-relative-plugin": "^1.1.0",
"del": "^7.0.0",
"dotenv": "^16.0.3",
"execa": "^7.1.1",
"fs-extra": "^11.1.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-imagemin": "^8.0.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0",
"gulp-uglify": "^3.0.2",
"hasha": "^5.2.2",
"jquery": "^3.6.3",
"mini-css-extract-plugin": "^2.7.5",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"postcss-url": "^10.1.3",
"rollup": "^3.19.1",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-progress": "^1.1.2",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.2",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-fix-style-only-entries": "^0.6.1",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"prebuild": "node .\\build\\clean.js --dir src",
"publish:cdn": "node .\\build\\publish.js",
"publish:release": "node .\\build\\release.js",
"webpack:build:free": "npm run prebuild & webpack --env flavor=free --progress --stats-modules-space 999",
"webpack:build:pro": "npm run prebuild & webpack --env flavor=pro --progress --stats-modules-space 999",
"webpack:release:free": "npm run webpack:build:free & node .\\build\\publish.js --flavor free & node .\\build\\release.js --flavor free",
"webpack:release:pro": "npm run webpack:build:pro & node .\\build\\publish.js --flavor pro & node .\\build\\release.js --flavor pro",
"webpack:release": "npm run webpack:release:free & npm run webpack:release:pro",
"webpack:analyze": "webpack --json > analysis.json",
"start": "node .\\demos\\run.js",
"compile": "tsc -p tsconfig.json",
"rollup:build:free": "npm run prebuild & rollup -c --environment flavor=free",
"rollup:build:pro": "npm run prebuild & rollup -c --environment flavor=pro",
"rollup:release:free": "npm run rollup:build:free & npm run publish:cdn & npm run publish:release",
"rollup:release:pro": "npm run rollup:build:pro & npm run publish:cdn & npm run publish:release",
"gulp:build:free": "gulp build --environment flavor=free",
"gulp:build:pro": "gulp build --environment flavor=pro"
},
"engines": {
"node": ">=18.15.0",
"npm": ">=9.5.0"
},
"overrides": {
"graceful-fs": "^4.2.11",
"chokidar": "^3.5.3"
},
"browserslist": [
"ie >= 10",
"ie_mob >= 10",
"ff >= 30",
"chrome >= 34",
"firefox >= 101",
"safari >= 7",
"opera >= 23",
"ios >= 7",
"android >= 4.4",
"bb >= 10"
]
}