-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "ms-speech-services-demo-web-tts",
"version": "1.0.0",
"description": "JavaScript server written with Express.js",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"start": "node src/index.js",
"start:dev": "npm run lint && nodemon --exec node src/index.js --unhandled-rejections=warn",
"test": "jest --detectOpenHandles --coverage",
"lint": "eslint src/**/*.js --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"supertest": "^6.1.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"microsoft-cognitiveservices-speech-sdk": "^1.17.0"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}