-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 1.99 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
{
"name": "okinawa-front-end-meetup5",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "parcel -p 8080 ./app/index.html",
"test": "jest --coverage --no-cache"
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"core-js": "3",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"rxjs": "^6.5.3",
"rxjs-hooks": "^0.5.1"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@types/jest": "^24.0.20",
"@types/node": "^12.11.7",
"babel-preset-power-assert": "^3.0.0",
"espower-typescript": "^9.0.2",
"jest": "^24.9.0",
"parcel": "^1.12.4",
"power-assert": "^1.6.1",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"babel": {
"env": {
"test": {
"presets": [
"power-assert"
]
}
},
"plugins": [],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"> 1%",
"last 2 versions",
"not dead",
"ie 11"
]
},
"useBuiltIns": "usage",
"corejs": 3
}
]
]
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"transformIgnorePatterns": [
"node_modules/(?!(shared|xatto/src))"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
"\\.(css|styl(us)?|svg)$": "identity-obj-proxy"
},
"globals": {
"ts-jest": {
"babelConfig": {
"presets": [
"power-assert"
]
},
"isolatedModules": true
}
},
"setupFiles": [
"./jest.js"
]
}
}