forked from flickerbox/build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.57 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@flickerbox/build",
"version": "20.11.1",
"description": "Flickerbox build module makes it easy to run webpack, babel, postcss, and more for a quality static resource build for your JS and CSS site assets.",
"main": "index.js",
"bin": {
"flickerbox-build": "bin/flickerbox-build.js"
},
"scripts": {
"commands": "npm run help",
"delete-maps": "find ./ -name '*.map' -delete",
"dev": "npm run development",
"development": "NODE_ENV=development parallel-webpack --config=config/webpack.config.js -p=3 --watch",
"font": "npm run fonts",
"fonts": "NODE_ENV=production webpack --config=config/webpack.font.js --info-verbosity verbose --progress",
"fonts-dev": "NODE_ENV=production webpack --config=config/webpack.font.js --info-verbosity verbose --progress --watch",
"help": "flickerbox-build -- help",
"prod": "npm run production",
"production": "NODE_ENV=production parallel-webpack --config=config/webpack.config.js --max-retries=2 --no-stats && npm run delete-maps",
"version-check": "flickerbox-build -- version-check",
"watch": "npm run development"
},
"homepage": "https://www.flickerbox.com",
"repository": {
"type": "git",
"url": "git+https://github.com/flickerbox/build.git"
},
"bugs": {
"url": "https://github.com/flickerbox/build/issues"
},
"keywords": [
"webpack",
"babel",
"javascript-build",
"sass-build"
],
"author": "Flickerbox <[email protected]> (https://www.flickerbox.com)",
"license": "MIT",
"engines": {
"node": ">=12.13.0",
"npm": ">=6.12.0"
},
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-classes": "^7.9.5",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.9.6",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.1.0",
"commander": "^5.1.0",
"config": "^3.3.1",
"core-js": "^3.6.5",
"css-flip": "^0.5.0",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"csso-cli": "^3.0.0",
"fibers": "^5.0.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"ignore-assets-webpack-plugin": "^2.0.1",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"node-sass-glob-importer": "^5.3.2",
"parallel-webpack": "^2.6.0",
"path": "^0.12.7",
"postcss-cli": "^7.1.1",
"postcss-loader": "^3.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.3.3",
"stylelint-scss": "^3.17.2",
"stylelint-webpack-plugin": "^2.0.0",
"vue": "^2.6.11",
"vue-loader": "^15.9.2",
"vue-style-loader": "^4.1.2",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.4.0",
"vuex-persistedstate": "^3.0.1",
"webpack": "^4.43.0",
"webpack-chain": "^6.5.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-notifier": "^1.8.0"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"last 2 iOS major versions",
"IE >= 11"
]
}