generated from yandex-praktikum/web-larek-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.64 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
{
"name": "my-webpack-project",
"description": "My webpack project",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"module": "es6",
"scripts": {
"dev": "webpack serve",
"build": "webpack --mode=production --node-env=production",
"lint": "eslint --ext .js,.ts ./src",
"lint:fix": "npm run lint -- --fix",
"format": "prettier ./src --write",
"predeploy": "pnpm build",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@gitlab/stylelint-config": "^6.1.0",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.2",
"@webpack-cli/generators": "^3.0.2",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.7.3",
"dotenv": "^16.3.1",
"dotenv-webpack": "^8.1.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.1",
"mini-css-extract-plugin": "^2.7.5",
"postcss": "^8.4.23",
"postcss-loader": "^7.3.0",
"prettier": "^3.2.5",
"resolve-url-loader": "^5.0.0",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"stylelint": "^16.5.0",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3"
},
"dependencies": {
"@types/node": "^20.12.11",
"sanitize-html": "^2.13.0"
}
}