-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.55 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
{
"name": "guess_country_by_flag",
"version": "1.0.0",
"description": "webpack learning",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development webpack --mode development",
"build": "cross-env NODE_ENV=production webpack --mode production",
"webpack": "webpack",
"watch": "cross-env NODE_ENV=development webpack --mode development --watch",
"start": "cross-env NODE_ENV=development webpack serve --mode development --open"
},
"keywords": [
"js",
"webpack"
],
"author": "Amirden <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "*",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"style-loader": "^2.0.0",
"webpack": "^5.38.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"jquery": "^3.6.0",
"normalize.css": "^8.0.1"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Amirden-st/guess_country_by_flag.git"
},
"bugs": {
"url": "https://github.com/Amirden-st/guess_country_by_flag/issues"
},
"homepage": "https://github.com/Amirden-st/guess_country_by_flag#readme"
}