-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.51 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
{
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"build": "npm install --no-audit && npm run bundle:prod",
"bundle:dev": "npm install && webpack --config ./webpack.config.js --mode development",
"bundle:prod": "webpack --config ./webpack.config.js --mode production",
"bundle:watch": "webpack --config ./webpack.config.js --mode development --watch",
"develop": "npm run bundle:watch",
"start": "npm install && npm run develop"
},
"dependencies": {
"bootstrap": "^5.2.3",
"jquery": "^3.6.3",
"jquery-ui": "^1.13.0",
"lg-video.js": "^1.3.0",
"lightgallery.js": "^1.4.0",
"vue": "^2.7.14",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@types/bootstrap": "^5.2.6",
"@types/jquery": "^3.3.38",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.32.0",
"eslint-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss-loader": "^7.0.2",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-remove-empty-scripts": "^1.0.1"
}
}