-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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": "assistant-app-boilerplate",
"title": "Assistant App Boilerplate",
"version": "0.0.1",
"description": "A WordPress plugin that demonstrates how to create a custom assistant app",
"repository": {
"type": "git",
"url": "https://github.com/beaverbuilder/assistant-app-boilerplate.git"
},
"scripts": {
"build": "NODE_ENV=production webpack",
"build:stats": "webpack --env production --json > stats.json",
"dev": "webpack --watch",
"fix": "eslint src --fix",
"test": "eslint src",
"analyze": "NODE_ENV=analyze webpack --watch"
},
"license": "GPL-2.0+",
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.1.0",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.2.0",
"eslint": "^7.18.0",
"jest": "^26.5.0",
"mini-css-extract-plugin": "^1.3.4",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^4.2.0",
"sass": "^1.69.4",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0"
}
}