-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 858 Bytes
/
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
{
"name": "react-clone",
"version": "1.0.0",
"main": "",
"license": "MIT",
"scripts": {
"test": "jest",
"build-example": "webpack"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/node": "^8.0.20",
"@types/webpack": "^3.0.8",
"babel-core": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"jest": "^20.0.4",
"ts-jest": "^20.0.10",
"ts-node": "^3.3.0",
"tslint": "^5.6.0",
"typescript": "^2.4.2",
"webpack": "^3.5.3"
},
"dependencies": {
"awesome-typescript-loader": "^3.2.3",
"immutable": "^3.8.1"
}
}