-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.34 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
{
"name": "amazon-turk-annotation",
"preferGlobal": false,
"version": "0.1.0",
"author": "Andrei Barbu <[email protected]>",
"description": "",
"scripts": {
"start": "make",
"prettier": "npx prettier --write public/gui.css public/gui.html public/gui.ts server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/abarbu/audio-annotation.git"
},
"keywords": [
"amazon",
"gui",
"annotation",
"audio"
],
"dependencies": {
"api-mturk": "*",
"compression": "*",
"conllujs": "^3.0.0",
"connect": "*",
"cookie-parser": "*",
"csv-parser": "*",
"errorhandler": "*",
"express": "4.17.1",
"express-session": "*",
"lodash": "*",
"microtime": "*",
"morgan": "*",
"passport": "*",
"passport-google-oauth": "*",
"redis": "*",
"supervisor": "*",
"underscore": "*"
},
"analyze": false,
"license": "GPL",
"engines": {
"node": ">=0.10"
},
"devDependencies": {
"@types/bootstrap": "^3.3.33",
"@types/d3": "^3.5.43",
"@types/jquery": "^3.3.36",
"@types/lodash": "^4.14.150",
"@types/redis": "^4.0.11",
"eslint": "^6.8.0",
"prettier": "^2.0.5",
"typescript": "^3.8.3"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"arrowParens": "avoid",
"printWidth": 120
}
}