-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "movapp-data",
"version": "1.0.0",
"description": "Movapp DATA tools",
"type": "module",
"scripts": {
"build:dictionary": "node dist/buildDictionary.js",
"build:alphabet": "node dist/buildAlphabet.js",
"watch": "tsc --watch",
"build": "rimraf dist && tsc",
"check": "npm run format && npm run lint",
"lint": "eslint ./src --fix",
"lint:check": "eslint ./src",
"format": "prettier --ignore-path .gitignore --write \"src/**/*.+(js|ts|json)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/cesko-digital/movapp-data.git"
},
"keywords": [
"MOVAPP"
],
"author": "Martin Kluska <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cesko-digital/movapp-data/issues"
},
"homepage": "https://github.com/cesko-digital/movapp-data#readme",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^17.0.31",
"@types/strip-final-newline": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@types/sharp": "^0.30.2",
"airtable": "^0.11.3",
"dotenv": "^16.0.1",
"got": "^12.1.0",
"log-beautify": "^1.2.0",
"microsoft-cognitiveservices-speech-sdk": "^1.21.0",
"rimraf": "^3.0.2",
"sharp": "^0.30.5"
}
}