-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.91 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
{
"name": "middle.messenger.praktikum.yandex",
"version": "0.4.0",
"description": "chat Volchat SP4",
"scripts": {
"test": "jest",
"start": "npm run build && node ./server.js",
"husky": "husky install",
"eslint": "eslint . --ext .js,.ts",
"eslint:fix": "eslint . --fix --ext .js,.ts",
"stylelint": "stylelint **/*.css",
"stylelint:fix": "stylelint **/*.css --fix",
"lint": "npm run eslint && npm run stylelint",
"dev": "webpack serve --mode development",
"build": "webpack --mode production"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|ts|css)": [
"npm run test",
"npm run lint"
]
},
"author": "realdmitrii",
"license": "ISC",
"devDependencies": {
"@testing-library/dom": "8.19.0",
"@testing-library/jest-dom": "5.16.5",
"@types/jest": "29.2.3",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"css-loader": "6.7.2",
"css-minimizer-webpack-plugin": "4.2.2",
"eslint": "8.24.0",
"express": "4.18.1",
"handlebars": "4.7.7",
"handlebars-jest": "1.0.0",
"handlebars-loader": "^1.7.3",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.2",
"identity-obj-proxy": "3.0.0",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"lint-staged": "13.0.3",
"msw": "0.48.1",
"nanoid": "3.2.0",
"postcss": "8.4.16",
"postcss-import": "15.0.0",
"postcss-loader": "7.0.1",
"postcss-nested": "5.0.6",
"postcss-preset-env": "7.8.3",
"postcss-simple-vars": "7.0.0",
"style-loader": "3.3.1",
"stylelint": "14.13.0",
"stylelint-config-standard": "28.0.0",
"terser-webpack-plugin": "5.3.6",
"ts-jest": "29.0.3",
"ts-loader": "9.4.1",
"typescript": "4.8.4",
"webpack": "5.75.0",
"webpack-cli": "5.0.0",
"webpack-dev-server": "4.11.1",
"webpack-merge": "5.8.0"
}
}