-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "localturk",
"version": "2.2.2",
"description": "Run Mechanical Turk-like tasks on your own.",
"main": "index.js",
"repository": "https://github.com/danvk/localturk.git",
"author": "Dan Vanderkam <[email protected]>",
"license": "MIT",
"bin": {
"localturk": "dist/localturk.js",
"classify-images": "dist/classify-images.js"
},
"dependencies": {
"commander": "^12.1.0",
"csv-parse": "^5.5.6",
"csv-stringify": "^6.5.1",
"errorhandler": "^1.5.0",
"escape-html": "^1.0.3",
"express": "^4.16.2",
"fs-extra": "^4.0.2",
"lodash": "^4.17.4",
"open": "8",
"reservoir": "^0.1.2",
"serve-static": "^1.16.2",
"temp": "^0.8.3"
},
"devDependencies": {
"@types/errorhandler": "^0.0.32",
"@types/escape-html": "^1.0.4",
"@types/express": "^4.0.39",
"@types/fs-extra": "^4.0.5",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.14.87",
"@types/node": "18",
"@types/reservoir": "^0.1.6",
"@types/temp": "^0.8.31",
"jest": "^29.7.0",
"knip": "^5.30.4",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"scripts": {
"demo": "ts-node localturk.ts --random-order sample/transcribe.html sample/tasks.csv sample/outputs.csv",
"format": "prettier --write '*.ts' 'test/*.ts'",
"format:check": "prettier --check '*.ts' 'test/*.ts'",
"tsc": "tsc",
"test": "jest"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": true
}
}