-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.81 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
{
"name": "aero-css-pt2",
"version": "1.1.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:sass": "sass --no-source-map src/sass:public/css",
"copy:assets": "copyfiles -u 1 ./src/assets/**/* public",
"copy:html": "copyfiles -u 1 ./src/*.html public",
"copy": "npm-run-all --parallel copy:*",
"watch:assets": "onchange \"/src/assets/**/*\" -- npm run copy:assets",
"watch:html": "onchange \"src/*.html\" -- npm run copy:html",
"watch:sass": "sass --no-source-map --watch src/sass:public/css",
"watch": "npm-run-all --parallel watch:*",
"serve": "browser-sync start --config ./bs-config.js",
"relo": "browser-sync reload --port 3021",
"start": "npm-run-all copy --parallel watch serve",
"build": "npm-run-all copy:html build:*",
"postbuild": "postcss ./src/css/brief.css -r --no-map",
"pack": "webpack --config webpack.config.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"autoprefixer": "^10.4.12",
"browser-sync": "^2.27.10",
"copyfiles": "^2.4.1",
"cssnano": "^5.1.13",
"exceljs": "^4.3.0",
"express": "^4.18.2",
"file-saver": "^2.0.5",
"multer": "^1.4.5-lts.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"perfectionist": "^2.4.0",
"postcss": "^8.4.17",
"postcss-cli": "^10.0.0",
"postcss-focus": "^5.0.1",
"postcss-font-magician": "^3.0.0",
"postcss-pixels-to-rem": "^0.8.0",
"sass": "^1.55.0",
"stylelint": "^14.13.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"fs": "^0.0.1-security",
"fs-extra": "^11.1.0",
"xlsx": "^0.18.5"
}
}