forked from kentcdodds/dom-testing-library-with-anything
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.08 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
{
"name": "dom-testing-library-with-anything",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"precommit": "lint-staged"
},
"keywords": [],
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"@dojo/framework": "^3.0.0",
"@polymer/polymer": "^3.0.5",
"angular": "^1.7.4",
"aurelia-framework": "^1.3.0",
"backbone": "^1.3.3",
"backbone-torso": "^0.8.16",
"from-html": "^0.3.3",
"hyperapp": "^1.2.9",
"jquery": "^3.3.1",
"knockout": "^3.4.2",
"mithril": "^1.1.6",
"preact": "^8.3.1",
"react": "^16.5.1",
"stimulus": "^1.1.0",
"svelte": "^2.13.4",
"vue": "^2.5.17",
"wigly": "^0.1.9"
},
"devDependencies": {
"@angular/common": "^6.1.7",
"@angular/compiler": "^6.1.7",
"@angular/core": "^6.1.7",
"@angular/platform-browser": "^6.1.7",
"@angular/platform-browser-dynamic": "^6.1.7",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"babel-core": "^7.0.0-0",
"dom-testing-library": "^3.5.1",
"husky": "^0.14.3",
"jest": "^23.6.0",
"jest-dom": "^1.12.0",
"jest-preset-angular": "^6.0.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"react-dom": "^16.5.1",
"zone.js": "^0.8.26"
},
"babel": {
"presets": [
"@babel/preset-typescript",
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
]
]
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"transform": {
"^.+\\.(js|ts|tsx)$": "babel-jest"
},
"testMatch": [
"**/*.test.+(js|ts|tsx)"
],
"preset": "jest-preset-angular"
}
}