-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.73 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.73 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
{
"name": "programming.org.ua",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "webpack --mode=production",
"start": "webpack serve --open --mode=development",
"bundle-analyze:prod": "webpack --mode=production --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"lint": "npx prettier --write '**/*.{js,hbs,scss}' && npx eslint --ext .js .",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,hbs,scss}": [
"npx prettier --write"
],
"**/*.js": [
"npm run lint -- --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/shpp/programming.org.ua.git"
},
"bugs": {
"url": "https://github.com/shpp/programming.org.ua/issues"
},
"homepage": "https://github.com/shpp/programming.org.ua",
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.1",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.38",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^9.5.9",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"sitemap-webpack-plugin": "^1.1.1",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.2",
"node-fetch": "^2.6.9",
"swiper": "^9.2.0",
"vue": "^3.2.47"
}
}