-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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": "speaker-worker",
"version": "4.0.0",
"main": "dist/index.js",
"scripts": {
"prestart": "npm run build",
"start": "node dist/index.js",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint \"src/*\"",
"lint:fix": "eslint --fix \"src/*\"",
"clear:cache": "rimraf cache/*",
"clear:build": "rimraf dist",
"clear": "npm run clear:cache && npm run clear:build"
},
"author": "Matthew Peveler <[email protected]>",
"private": true,
"dependencies": {
"@cisl/express": "^1.0.3",
"@cisl/io": "^1.0.0-dev.23",
"@cisl/logger": "^1.2.0",
"@types/dotenv": "^6.1.1",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^12.7.12",
"@types/node-fetch": "^2.5.2",
"@types/pcm-volume": "^1.0.0",
"@types/wav": "^1.0.0",
"ibm-watson": "^5.0.0",
"lodash.merge": "^4.6.2",
"pcm-volume": "^1.0.0",
"rimraf": "^3.0.2",
"speaker": "^0.5.2",
"wav": "^1.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.5.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "npm run lint:fix"
}
}