generated from yandex-praktikum/middle.messenger.praktikum.yandex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "messenger_praktikum",
"private": true,
"version": "1.0.0",
"type": "commonjs",
"engines": {
"node": "v18.16.1"
},
"scripts": {
"dev": "vite",
"start": "vite build && node ./server.js",
"build": "vite build",
"stylelint": "npx stylelint **/*.scss",
"lint": "eslint --ignore-path .eslintignore . --ext .ts --fix",
"preview": "vite preview",
"lint:fix": "eslint --fix"
},
"devDependencies": {
"@types/handlebars": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.27.5",
"nanoid": "3",
"sass": "^1.63.6",
"stylelint": "^15.11.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"tslint": "^6.1.3",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-handlebars": "^1.6.0"
},
"dependencies": {
"express": "^4.18.2",
"handlebars": "^4.7.7"
}
}