This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 2.78 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "webpack-nunjucks-boilerplate",
"description": "Webpack + Nunjucks boilerplate for static websites that has all the necessary modern tools and optimizations built-in",
"repository": "[email protected]:alsolovyev/webpack-nunjucks-boilerplate.git",
"author": "janeRivas <[email protected]> (https://github.com/alsolovyev)",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"build:webpack": "cross-env NODE_ENV=production TS_SUPPORT=false webpack --profile --progress --config ./config/webpack.config.js",
"build": "yarn lint && yarn format && yarn build:webpack",
"deploy": "git subtree push --prefix dist origin gh-pages",
"format:check": "prettier --config ./config/.prettierrc.js --check --ignore-unknown \"**\"",
"format:write": "prettier --config ./config/.prettierrc.js --write --ignore-unknown \"**\"",
"format": "yarn format:write",
"init:hooks": "git config core.hooksPath .github/hooks && chmod +x .github/hooks/*",
"lint": "eslint --config ./config/.eslintrc.js --ext .ts,.js .",
"serve": "cross-env NODE_ENV=development TS_SUPPORT=false webpack serve --profile --progress --config ./config/webpack.config.js",
"start": "yarn serve"
},
"lint-staged": {
"*": "prettier --config ./config/.prettierrc.js --write --ignore-unknown",
"*.js": "eslint --config ./config/.eslintrc.js",
"*.ts": "eslint --config ./config/.eslintrc.js"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.5",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.55.0",
"eslint-webpack-plugin": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^6.5.3",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.4",
"lint-staged": "^15.2.0",
"mini-css-extract-plugin": "^2.7.6",
"nunjucks": "^3.2.4",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"postcss-sass": "^0.5.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.1.1",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"stylelint": "^15.11.0",
"stylelint-webpack-plugin": "^4.1.1",
"svg-sprite-loader": "^6.0.11",
"svgo-loader": "^4.0.0",
"thread-loader": "^4.0.2",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-log": "^3.0.2",
"webpack-merge": "^5.10.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}