-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "react_preview",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:cjost1988/react_preview.git",
"author": "Christian Jost <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/jest": "^20.0.8",
"@types/react": "^16.0.5",
"@types/react-dom": "^15.5.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"webpack": "^3.5.5"
},
"devDependencies": {
"@types/enzyme": "^2.8.6",
"awesome-typescript-loader": "^3.2.3",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.9.1",
"jest": "^20.0.4",
"react-test-renderer": "^15.6.1",
"source-map-loader": "^0.2.1",
"ts-jest": "^20.0.11",
"typescript": "^2.4.2"
},
"scripts": {
"test": "jest"
},
"jest": {
"transform": {
".(ts|tsx)": "./node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}