-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "edvisor-widget-sandbox",
"version": "0.0.1",
"description": "This is just a test.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"author": "Pavol Knapek",
"license": "ISC",
"dependencies": {
"@types/core-js": "0.9.36",
"@types/react": "^15.0.31",
"@types/react-dom": "^15.5.1",
"@types/react-redux": "^4.4.45",
"awesome-typescript-loader": "^3.1.3",
"react": "^15.6.1",
"react-addons-css-transition-group": "^15.0.0",
"react-addons-shallow-compare": "^15.0.0",
"react-apollo": "^1.4.3",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"react-selectize": "^2.1.0",
"redux": "^3.7.1",
"source-map-loader": "^0.2.1",
"typescript": "2.3.x"
},
"devDependencies": {
"enzyme": "^2.9.1",
"jest": "^20.0.4",
"react-test-renderer": "^15.6.1",
"ts-jest": "^20.0.6"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$"
}
}