-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "maket--prechu",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"brs": "browser-sync start --server \"dist\" --files \"**/*\"",
"format": "prettier --write ./src/**/*",
"csssort": "postcss ./src/**/*.scss --replace --config package.json --no-map",
"cssprefix": "postcss ./dist/**/*.css --replace --use autoprefixer --config package.json --no-map",
"prod": "npm run csssort && npm run build && npm run cssprefix"
},
"devDependencies": {
"autoprefixer": "^10.4.8",
"browser-sync": "^2.27.10",
"css-declaration-sorter": "^6.3.1",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"postcss-scss": "^4.0.4",
"prettier": "^2.7.1",
"sass": "^1.54.8",
"vite": "^3.0.9"
},
"postcss": {
"syntax": "postcss-scss",
"map": false,
"plugins": {
"css-declaration-sorter": {
"order": "smacss"
}
}
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.0",
"swiper": "^8.3.2"
}
}