forked from kentcdodds/dom-testing-library-with-anything
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "dom-testing-library-with-anything",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"@dojo/framework": "^5.0.4",
"angular": "^1.8.2",
"backbone": "^1.4.0",
"from-html": "^0.3.3",
"hyperapp": "^1.2.10",
"jquery": "^3.5.1",
"knockout": "^3.5.1",
"mithril": "^2.0.4",
"preact": "^10.5.7",
"react": "^17.0.1",
"svelte": "^3.31.0",
"vue": "^2.6.12"
},
"devDependencies": {
"@angular/common": "^11.0.3",
"@angular/compiler": "^11.0.3",
"@angular/core": "^11.0.3",
"@angular/platform-browser": "^11.0.3",
"@angular/platform-browser-dynamic": "^11.0.3",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@testing-library/dom": "^7.28.1",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/user-event": "^12.4.0",
"babel-core": "^7.0.0-0",
"core-js": "^3.8.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-preset-angular": "^8.3.2",
"jest-transform-svelte": "^2.1.1",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"react-dom": "^17.0.1",
"zone.js": "^0.11.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"babel": {
"presets": [
"@babel/preset-typescript",
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
]
]
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx",
"svelte"
],
"transform": {
"^.+\\.(js|ts|tsx)$": "babel-jest",
"^.+\\.svelte$": "jest-transform-svelte"
},
"testMatch": [
"**/*.test.+(js|ts|tsx)"
],
"preset": "jest-preset-angular"
}
}