generated from yandex-praktikum/middle.messenger.praktikum.yandex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.35 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": "middle.messenger.praktikum.yandex",
"version": "1.0.0",
"description": "---",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --open",
"build": "cross-env NODE_ENV=production webpack --mode production",
"build:container": "docker build -t messenger .",
"lint:scss": "npx stylelint \"**/*.scss\"",
"lint:scss:fix": "npx stylelint \"**/*.scss\" --fix",
"lint:ts": "eslint --ext .ts ./",
"lint:ts:fix": "eslint --ext .ts ./ --fix",
"mock": "node ./tests/server/server.js",
"test": "ts-mocha src/**/*.spec.ts --require tests/mock.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dacorm/middle.messenger.praktikum.yandex.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dacorm/middle.messenger.praktikum.yandex/issues"
},
"homepage": "https://github.com/dacorm/middle.messenger.praktikum.yandex#readme",
"devDependencies": {
"@types/chai": "4.3.4",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.0",
"@types/pug": "2.0.6",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"chai": "4.3.7",
"chai-dom": "1.11.0",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "11.0.0",
"cross-env": "7.0.3",
"css-loader": "6.7.2",
"eslint": "8.25.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-react": "7.31.10",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.0",
"jsdom": "20.0.3",
"json-server": "0.17.1",
"mini-css-extract-plugin": "2.7.0",
"mocha": "^10.1.0",
"node-polyfill-webpack-plugin": "2.0.1",
"pug": "3.0.2",
"sass": "1.55.0",
"sass-loader": "13.2.0",
"stylelint": "14.13.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-sass-guidelines": "9.0.1",
"stylelint-config-standard": "28.0.0",
"terser-webpack-plugin": "5.3.6",
"ts-loader": "9.4.1",
"ts-mocha": "10.0.0",
"typescript": "4.8.4",
"webpack": "5.75.0",
"webpack-cli": "5.0.0",
"webpack-dev-server": "4.11.1",
"xmlhttprequest": "^1.8.0"
},
"dependencies": {
"express": "4.18.1",
"uuid": "9.0.0"
}
}