-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.78 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.78 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
61
{
"name": "portfolio",
"version": "1.0.0",
"type": "module",
"main": "./src/index.ts",
"homepage": "https://elrouss.github.io/portfolio",
"repository": {
"type": "git",
"url": "git+https://github.com/elrouss/portfolio.git"
},
"scripts": {
"build": "webpack",
"build:dev": "rm -rf dist && webpack --mode=development",
"build:prod": "rm -rf dist && webpack --mode=production",
"dev": "webpack serve",
"prettier:check": "prettier --check .",
"tsc": "tsc --noEmit",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"stylelint": "npx stylelint \"src/**/*.{css,scss}\"",
"stylelint:fix": "npx stylelint \"src/**/*.{css,scss}\" --fix",
"prettier": "npx prettier --write .",
"prepare": "husky"
},
"keywords": [],
"author": "Boris Zashliapin <elrouss.dev@yandex.ru>",
"license": "MIT",
"description": "",
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.36.0",
"@stylistic/eslint-plugin": "^5.4.0",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"html-bundler-webpack-plugin": "^4.21.1",
"husky": "^9.1.7",
"nunjucks": "^3.2.4",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"postcss-preset-env": "^10.3.1",
"prettier": "^3.6.2",
"sass": "^1.92.1",
"sass-loader": "^16.0.5",
"stylelint": "^16.24.0",
"stylelint-config-standard-scss": "^16.0.0",
"svg-sprite-loader": "^6.0.11",
"svgo-loader": "^4.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"@babel/polyfill": "^7.12.1"
}
}