-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "plugin-template-webpack",
"version": "1.0.0",
"description": "BuildFire plugin template for Webpack",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config ./webpack/build.config.js"
},
"keywords": [
"buildfire",
"plugin",
"webpack"
],
"author": "BuildFire",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.0.0-beta.40",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint-plugin-import": "^2.23.4",
"copy-webpack-plugin": "^4.1.1",
"css-loader": "^0.28.9",
"eslint": "^7.28.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"style-loader": "^0.20.1",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.3",
"zip-webpack-plugin": "^2.0.0"
},
"dependencies": {
"eslint-config-airbnb-base": "^14.2.1",
"faker": "^5.5.3",
"lodash.foreach": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.isobject": "^3.0.2"
}
}