-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.82 KB
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
{
"private": true,
"name": "webland",
"version": "1.0.0",
"author": "Iosif Isachko <yaiosifua@gmail.com>",
"homepage": "https://iosif.fun/",
"description": "This is the open source code of my portfolio.",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --open --inline",
"build": "rimraf dist && cross-env NODE_ENV=production webpack --progress",
"dev": "rimraf dist && cross-env NODE_ENV=development webpack --progress",
"lint": "eslint src/js",
"stylelint": "stylelint src/scss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luamoris/webland.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/luamoris/webland/issues"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-async-to-generator": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"babel-loader": "^8.2.2",
"babel-minify-webpack-plugin": "^0.3.1",
"copy-webpack-plugin": "^8.1.0",
"cross-env": "^7.0.3",
"css-loader": "^5.1.3",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^1.3.9",
"node-sass": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^5.2.0",
"rimraf": "^3.0.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.27.2",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"autoprefixer": "^8.6.5"
}
}