-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "food",
"version": "1.0.0",
"description": "Vegy food shop",
"main": "index.html",
"scripts": {
"webpack:build": "webpack",
"scss:prefix": "postcss --use autoprefixer -b 'last 10 versions' css/style.css -o css/style.css",
"scss:compress": "node-sass css/style.css css/style.css --output-style compressed",
"build": "npm-run-all scss:prefix scss:compress webpack:build",
"webpack:watch": "webpack --watch",
"scss:compile": "node-sass scss/style.scss css/style.css",
"scss:watch": "nodemon -e scss -x \"npm run scss:compile\"",
"dev": "npm-run-all --parallel server scss:watch webpack:watch",
"server": "browser-sync start --server -w index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mux-mux/food.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/mux-mux/food#readme",
"browserslist": [
"> 1%"
],
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"browser-sync": "^3.0.2",
"core-js": "^3.29.1",
"node-sass": "^9.0.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"es6-promise-polyfill": "^1.2.0",
"nodelist-foreach-polyfill": "^1.2.0"
}
}