-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.1 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
{
"name": "@di-zed/yandex-smart-home",
"version": "1.6.2",
"description": "The Yandex Smart Home skills for the different device types.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"copy": "cp -pr ./src/locales/ ./dist/ && cp -pr ./src/public/ ./dist/ && cp -pr ./src/views/ ./dist/",
"build": "NODE_ENV=development npm i && ./node_modules/typescript/bin/tsc && npm run copy",
"start": "npm run build && NODE_ENV=production npm i && node ./dist/server.js",
"start:dev": "NODE_ENV=development npm i && npx nodemon --watch \"*.ts\" --exec \"ts-node\" ./src/server.ts",
"start:prod": "NODE_ENV=production npm i && npx nodemon --watch \"*.ts\" --exec \"ts-node\" ./src/server.ts",
"lint": "eslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/di-zed/yandex-smart-home.git"
},
"keywords": [
"dized",
"yandex",
"smart",
"home",
"dialogs",
"alice"
],
"author": "DiZed Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/di-zed/yandex-smart-home/issues"
},
"homepage": "https://github.com/di-zed/yandex-smart-home#readme",
"dependencies": {
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-ruid": "^1.1.5",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"i18n": "^0.15.1",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mqtt": "^5.3.4",
"npm": "^10.2.5",
"redis": "^4.6.14",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21",
"@types/hpp": "^0.2.5",
"@types/i18n": "^0.13.10",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}