-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 2.68 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "manifold-dx",
"version": "1.1.33",
"private": false,
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mfsjr/manifold-dx"
},
"author": {
"name": "Matt Schleindl",
"email": "mattschleindl@yahoo.com"
},
"keywords": [
"react",
"typescript",
"state",
"flux",
"boilerplate",
"generics",
"predictable",
"replay",
"immutable"
],
"dependencies": {
"@types/lodash": "^4.14.123",
"jsondiffpatch": "^0.2.5",
"whatwg-fetch": "^2.0.4"
},
"peerDependencies": {
"react": "15.6.0 - 17.0.2",
"@types/react": "15.6.0 - 17.0.2",
"lodash": "^4.17.19",
"@types/lodash": "^4.14.123"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"@types/jest": "^27.5.2",
"@types/jsdom": "16.2.15",
"@types/node": "^16.11.6",
"@types/react": "^17.0.2",
"@types/react-dom": "^16.9.8",
"chalk": "1.1.3",
"enzyme": "^3.11.0",
"fs-extra": "3.0.1",
"object-assign": "4.1.1",
"pretty-format": "^22.1.0",
"promise": "8.0.1",
"react": "^17.0.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^17.0.2",
"ts-loader": "^2.3.7",
"tslint": "^5.20.1",
"tslint-loader": "^3.5.4",
"tslint-react": "^3.6.0",
"typescript": "3.7.5 - 4.7.4",
"ts-jest": "^26.5.6",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"jsdom": "^13.2.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
"<rootDir>/test/**/?(*.)(spec|test).ts?(x)"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^.+\\.tsx?$": "<rootDir>/config/jest/typescriptTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.ts",
"ts",
"web.tsx",
"tsx",
"web.js",
"js",
"web.jsx",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"tsconfig": "./tsconfig.test.json"
}
}
},
"scripts": {
"test": "node scripts/test.js --env=jsdom"
},
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"extends": "react-app"
}
}