-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.22 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
{
"name": "react-semantic-testing",
"version": "0.0.1",
"description": "The semantic way of testing your React app like your users would do",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "jest --config config/jest.config.json",
"test:watch": "jest --watch --config config/jest.config.json",
"type-check": "tsc",
"type-check:watch": "tsc --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --noEmit false --emitDeclarationOnly",
"build:js": "babel src --out-dir build --extensions \".ts\" --source-maps inline"
},
"keywords": [
"testing",
"test",
"integration",
"unit",
"semantic",
"utils",
"react",
"javascript",
"dom",
"js",
"jest"
],
"author": "Sergio Peris Perez <[email protected]>",
"license": "MIT",
"dependencies": {
"mutationobserver-shim": "^0.3.3",
"pretty-format": "^24.8.0"
},
"peerDependencies": {
"jest": "^24.1.0",
"react": "^16.9.0-alpha.0",
"react-dom": "^16.9.0-alpha.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.5.4",
"@types/jest": "^24.0.15",
"@types/jsdom": "^12.2.4",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.1.1",
"@types/react-router": "^5.0.3",
"@types/react-router-dom": "^4.3.4",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"prettier": "1.16.4",
"react": "^16.9.0-alpha.0",
"react-dom": "^16.9.0-alpha.0",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"typescript": "^3.5.3"
},
"babel": {
"presets": [
"@babel/env",
"@babel/typescript",
"@babel/react"
],
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread"
]
}
}