-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "sample-react-ts-app",
"version": "0.1.0",
"private": true,
"main": "src/index.tsx",
"dependencies": {
"react": "^16.5.2",
"react-dom": "^16.3.2",
"react-redux": "5.0.7",
"react-scripts-ts": "^4.0.8",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom --moduleNameMapper='{\"^~/(.*)\":\"<rootDir>/src/$1\"}'",
"eject": "react-scripts-ts eject"
},
"devDependencies": {
"@types/enzyme": "^3.1.14",
"@types/jest": "^22.2.3",
"@types/node": "^10.0.4",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"@types/react-redux": "5.0.19",
"@types/redux-mock-store": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"jest-enzyme": "^6.1.2",
"klaw-sync": "^4.0.0",
"redux-mock-store": "^1.5.3",
"typescript": "^3.1.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}