-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.48 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "rem-comp-redeemweb",
"description": "Redeem Code Interface for RemCp. Bot",
"license": "MIT",
"version": "0.1.0",
"author": {
"name": "RemComp",
"url": "https://github.com/RemComp"
},
"bugs": {
"url": "https://github.com/RemComp/rem-comp-redeemWeb/issues"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/RemComp/rem-comp-redeemWeb.git"
},
"homepage": "https://github.com/RemComp/rem-comp-redeemWeb",
"scripts": {
"build": "npx gulp build",
"build:js": "npx gulp build:js",
"build:css": "npx gulp build:css",
"build:fonts": "npx gulp build:fonts",
"build:copy": "npx gulp build:copy",
"build:prod": "npx gulp build --env=production",
"build:prod:js": "npx gulp build:js --env=production",
"build:prod:css": "npx gulp build:css --env=production",
"build:prod:fonts": "npx gulp build:fonts --env=production",
"build:prod:copy": "npx gulp build:copy --env=production",
"watch": "npx gulp watch",
"serve": "npx gulp serve",
"start": "node run.js"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"apexcharts-clevision": "^3.28.5",
"axios": "^1.7.4",
"bcryptjs": "^2.4.3",
"bootstrap": "~5.3.2",
"boxicons": "~2.1.4",
"connect-mongo": "^5.1.0",
"connect-sqlite3": "^0.9.15",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-session": "^1.18.0",
"highlight.js": "~11.8.0",
"jquery": "~3.7.0",
"masonry-layout": "~4.2.2",
"mongodb": "^6.8.0",
"mongoose": "^8.5.2",
"multer": "^1.4.5-lts.1",
"perfect-scrollbar": "~1.5.5"
},
"devDependencies": {
"@babel/core": "~7.22.5",
"@babel/plugin-proposal-object-rest-spread": "~7.20.7",
"@babel/plugin-transform-destructuring": "~7.22.5",
"@babel/plugin-transform-template-literals": "~7.22.5",
"@babel/preset-env": "~7.22.5",
"ajv": "^8.12.0",
"ansi-colors": "~4.1.3",
"babel-loader": "~9.1.2",
"browser-sync": "^3.0.2",
"color-support": "~1.1.3",
"css-loader": "~6.8.1",
"deepmerge": "~4.3.1",
"del": "~6.1.1",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"fancy-log": "~2.0.0",
"gulp": "~4.0.2",
"gulp-autoprefixer": "~8.0.0",
"gulp-dart-sass": "^1.1.0",
"gulp-environment": "~1.5.2",
"gulp-exec": "^5.0.0",
"gulp-if": "~3.0.0",
"gulp-rename": "~2.0.0",
"gulp-replace": "~1.1.4",
"gulp-sourcemaps": "~3.0.0",
"gulp-uglify": "^3.0.2",
"gulp-useref": "^5.0.0",
"html-loader": "~4.2.0",
"js-beautify": "^1.14.8",
"prettier": "^2.8.8",
"sass": "1.68.0",
"sass-loader": "~13.3.2",
"string-replace-webpack-plugin": "~0.1.3",
"style-loader": "~3.3.3",
"terser-webpack-plugin": "~5.3.9",
"webpack": "~5.88.1",
"yarn": "~1.22.19"
},
"overrides": {
"prop-types": "15.7.2",
"sass": "1.68.0",
"loader-utils": "1.4.2",
"ws": "8.17.1",
"braces": "3.0.3",
"json5": "1.0.2",
"postcss": "8.4.31",
"yargs-parser": "5.0.1"
},
"resolutions": {
"prop-types": "15.7.2",
"sass": "1.68.0"
},
"gulp-environment": {
"environments": [
{
"name": "development",
"aliases": [
"dev"
]
},
{
"name": "production",
"aliases": [
"prod"
]
}
],
"default": "development"
}
}