-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "site-name",
"description": "A short description of this site",
"version": "1.0.0",
"author": "Frontkom",
"private": true,
"scripts": {
"sass:build": "node-sass sass -o .css -w --output-style nested",
"sass:prefix": "postcss .css/*.css -d css/ --use autoprefixer --watch --no-map",
"compile:style": "run-p sass:*",
"compile:jekyll": "bundle exec jekyll serve -w",
"compile:scripts": "webpack --mode=production --watch",
"compile": "run-p compile:*",
"browsersync": "browser-sync start server -p http://127.0.0.1:4000 -f='_site/css/**.css, _site/**/*.html' --no-ghost-mode --port 6060",
"start": "run-p compile browsersync",
"build:scripts": "webpack --mode=production",
"build": "run-p build:*",
"lint": "eslint src/**"
},
"dependencies": {
"core-js": "^3.6.4",
"regenerator-runtime": "^0.13.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.3",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.26",
"postcss-cli": "^7.1.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"browserslist": [
"last 2 versions",
"not ie 10",
"not ie_mob 10",
"not op_mini all"
]
}