forked from RT-coding-team/cbadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 857 Bytes
/
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
{
"scripts": {
"build": "rm -rf dist && pug src/templates/views --out dist && webpack",
"deploy": "npm run build && rm -rf /var/www/html/* && cp -r dist/* /var/www/html"
},
"main": "src/js/index.js",
"engines": {
"node": ">=12.13.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.1.0",
"node-sass": "^6.0.1",
"postcss-loader": "^6.1.1",
"pug": "^3.0.2",
"pug-cli": "^1.0.0-alpha6",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"@fontsource/roboto": "^4.5.0",
"@popperjs/core": "^2.9.3",
"bootstrap": "^5.0.2"
}
}