-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.89 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
{
"name": "wiki-pronunciation-dict",
"version": "1.0.1",
"description": "Pronunciation dictionaries for several languages, based on Wiktionary data.",
"repository": "https://github.com/DanielSWolf/wiki-pronunciation-dict.git",
"author": "Daniel Wolf <[email protected]>",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"build": "node --max-old-space-size=16384 --require sucrase/register build/build.ts",
"build:prof": "node --prof --max-old-space-size=16384 --require sucrase/register build/build.ts",
"find-outlyers": "node --require sucrase/register build/find-outlyers.ts",
"lint": "tsc --noEmit",
"prettify": "prettier --write .",
"test": "jest",
"test:watch": "jest --watchAll"
},
"devDependencies": {
"@cospired/i18n-iso-languages": "^2.2.0",
"@types/download": "^6.2.4",
"@types/ejs": "^3.0.6",
"@types/fs-extra": "^9.0.1",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.161",
"@types/memoizee": "^0.4.5",
"@types/object-inspect": "^1.6.1",
"@types/progress": "^2.0.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/sax": "^1.2.1",
"@types/split2": "^2.1.6",
"camelcase": "^6.2.0",
"csv-parse": "^4.15.1",
"download": "^8.0.0",
"ejs": "^3.1.6",
"entities": "^2.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.7",
"got": "^11.8.2",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"memoizee": "^0.4.15",
"neverthrow": "^4.2.1",
"object-inspect": "^1.8.0",
"prettier": "2.2.1",
"progress": "^2.0.3",
"quickchart-js": "^1.0.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"saxophone-ts": "^0.6.4",
"semaphore-async-await": "^1.5.1",
"split2": "^3.2.2",
"stream-progressbar": "^1.4.0",
"sucrase": "^3.15.0",
"ts-jest": "^26.5.4",
"typescript": "^4.1.3",
"unbzip2-stream": "^1.4.3"
}
}