-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.66 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
{
"name": "app_name",
"description": "Basic setup of Webpack on Phoenix framework",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development webpack --mode=development --config ./webpack/webpack.dev.js --watch",
"build": "NODE_ENV=production webpack --mode=production --config ./webpack/webpack.prod.js"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.11.2",
"babel-polyfill": "6.26.0",
"bootstrap": "4.3.1",
"jquery": "3.5.0",
"phoenix": "1.4.10",
"phoenix_html": "2.13.2",
"popper.js": "1.16.0",
"register-service-worker": "1.6.2"
},
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/preset-env": "7.6.3",
"@stencil/webpack": "0.0.6",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "5.0.4",
"css-loader": "3.2.0",
"cssnano": "4.1.10",
"dotenv-webpack": "1.7.0",
"eslint": "6.6.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.1",
"file-loader": "4.2.0",
"mini-css-extract-plugin": "0.8.0",
"node-sass": "4.13.1",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-preset-env": "6.7.0",
"prettier": "1.18.2",
"sass-loader": "8.0.0",
"style-loader": "1.0.0",
"uglifyjs-webpack-plugin": "2.2.0",
"url-loader": "2.2.0",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-merge": "4.2.2",
"workbox-webpack-plugin": "4.3.1"
}
}