-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.88 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
{
"devDependencies": {
"cheerio": "^1.0.0-rc.3",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.1.2",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"prettier": "^1.18.2",
"rollup": "^1.20.3",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-output-manifest": "^1.0.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-scss": "^1.0.2",
"rollup-plugin-terser": "^5.1.2",
"sass": "^1.22.12",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack": "^4.40.2",
"webpack-assets-manifest": "^3.1.1",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.2",
"webpack-manifest-plugin": "^2.0.4"
},
"scripts": {
"build:rollup:simple": "rollup -c examples/rollup/simple.js",
"build:rollup:split": "rollup -c examples/rollup/split.js",
"build:webpack:assets-manifest": "webpack --config examples/webpack/assets-manifest.simple.js --mode production",
"build:webpack:assets-manifest:integrity": "webpack --config examples/webpack/assets-manifest.integrity.js --mode production",
"build:webpack:manifest-plugin:simple": "webpack --config examples/webpack/manifest-plugin.config.js --mode production",
"build:webpack:manifest-plugin:split": "webpack --config examples/webpack/manifest-plugin.split.js --mode production",
"build:jekyll": "jekyll build",
"lint": "prettier './!(node_modules|_site)/!(dist)/**/*.{js,json,yml,yaml,md}'",
"prebuild": "concurrently 'yarn:build:webpack:*' 'yarn:build:rollup:*'",
"build": "yarn build:jekyll",
"test": "concurrently 'yarn:lint -c' 'yarn jest --testPathIgnorePatterns _site'"
},
"dependencies": {
"lodash-es": "^4.17.15"
}
}