generated from yandex-praktikum/middle.messenger.praktikum.yandex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.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
{
"name": "Messenger inLogin",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "vite build && vite preview --port 3000",
"lint:script": "npx eslint \"**/*.{ts, js}\"",
"fix:script": "npx eslint --fix \"**/*.{ts, js}\"",
"lint:style": "npx stylelint \"**/*.scss\"",
"fix:style": "npx stylelint --fix \"**/*.scss\"",
"test": "mocha",
"prepare": "husky install",
"pre-commit": "npm run lint:script && npm run lint:style && npm run test"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/chai": "^4.3.9",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.3",
"@types/node": "^20.14.0",
"@types/sinon": "^10.0.20",
"chai": "^5.1.1",
"eslint": "^8.57.0",
"globals": "^15.3.0",
"handlebars": "^4.7.8",
"jsdom": "^24.1.0",
"mocha": "^10.6.0",
"sass": "^1.72.0",
"sinon": "^18.0.0",
"husky": "^8.0.3",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0",
"vite": "^5.2.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^5.3.1"
},
"dependencies": {
"nanoid": "^5.0.7"
}
}