-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "mashup",
"version": "1.0.0",
"description": "Qlik Mashup React boilerplate",
"main": "index.js",
"scripts": {
"start": "webpack --watch --config webpack/webpack.dev.js",
"build": "webpack --config webpack/webpack.prod.js"
},
"keywords": [
"mashup",
"qlik"
],
"author": "Josh Asi",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/josh-asi/qlik-mashup-react-boilerplate.git"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"autoprefixer": "^9.7.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"file-loader": "^4.3.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.2",
"node-sass": "^4.13.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.2.0",
"style-loader": "^1.1.2",
"terser-webpack-plugin": "^1.4.3",
"url-loader": "^2.3.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"classnames": "^2.2.6",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
">1%",
"not dead",
"ie >= 11"
]
}