-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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-react",
"version": "1.0.0",
"description": "BuildFire plugin template for React",
"main": "server.js",
"scripts": {
"test": "webpack --config ./webpack/build.config.js",
"build": "webpack --config ./webpack/build.config.js"
},
"keywords": [
"buildfire",
"plugin",
"webpack",
"react"
],
"author": "BuildFire",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.10.0",
"express": "^4.16.3",
"html-webpack-plugin": "^2.30.1",
"preact": "^8.2.9",
"preact-compat": "^3.18.0",
"webpack": "^3.12.0",
"webpack-dev-middleware": "^1.12.2",
"webpack-dev-server": "^2.11.2",
"webpack-hot-middleware": "^2.22.2",
"zip-webpack-plugin": "^2.1.0"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"react": "^16.4.2",
"react-lazy-load": "^3.0.13",
"url-parse": "^1.4.3"
}
}