generated from yandex-praktikum/middle.messenger.praktikum.yandex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "middle.messenger.praktikum.yandex",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "16.15.0"
},
"scripts": {
"dev": "vite --open",
"prebuild": "tsc --noEmit",
"build": "npm run prebuild && vite build",
"preview": "vite preview --open",
"server": "node server.js",
"start": "npm run build && npm run server",
"lint:eslint": "eslint src",
"lint:stylelint": "stylelint \"src/**/*.sass\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"sass": "^1.66.1",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-scss": "^5.2.1",
"typescript": "^5.2.2",
"vite": "^4.4.5",
"vite-plugin-static-copy": "^0.17.0"
},
"dependencies": {
"express": "^4.18.2",
"handlebars": "^4.7.8",
"nanoid": "^4.0.2",
"postcss-sass": "^0.5.0",
"vite-plugin-handlebars": "^1.6.0"
}
}