-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"workspaces": [
"client",
"samples",
"server"
],
"name": "testing-library-spy",
"version": "0.0.0-semantically-released",
"description": "Real-time spying of HTML rendered by Testing Library",
"main": "server/dist/toolkit.js",
"types": "server/dist/toolkit.d.ts",
"scripts": {
"start": "ts-node ./src/test.ts",
"build": "yarn workspace testing-library-spy~client run build && yarn workspace testing-library-spy~server run build"
},
"author": "Michal Kočárek <michal.kocarek@brainbox.cz>",
"license": "MIT",
"dependencies": {
"@testing-library/react": "^11.0.4",
"debug": "^4.2.0",
"execa": "^4.0.3",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"socket.io": "^2.3.0"
},
"files": [
"LICENSE",
"README.md",
"package.json",
"client/dist/*",
"server/dist/*",
"server/dist/subprocess/*"
],
"devDependencies": {
"@types/express": "^4.17.8",
"@types/node": "^10.17.37",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/michal-kocarek/testing-library-spy"
}
}