-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "html5-recording-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "cd api && npm install",
"start": "run-p dev:api dev:server",
"test": "jest",
"test:acceptance": "jest acceptance --runInBand",
"dev:api": "npm run start --prefix api",
"dev:server": "npx snowpack dev --port 8081",
"build:azure": "npx snowpack build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@snakemode/emingmask": "^1.0.8",
"@snakemode/matrix-driver": "^1.0.23"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@types/jest": "^26.0.10",
"ably": "^1.2.1",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"microsoft-cognitiveservices-speech-sdk": "^1.13.1",
"npm-run-all": "^4.1.5",
"snowpack": "^2.17.1",
"typescript": "^4.0.2"
},
"jest": {
"verbose": false,
"testPathIgnorePatterns": [
"/node_modules",
"/tests/acceptance"
]
}
}