-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
73 lines (73 loc) · 1.84 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
{
"name": "typescript-react-redux",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"engines": {
"node": ">=7.0.0"
},
"scripts": {
"start": "http-server -c-1",
"build": "npm test && webpack",
"watch": "webpack --watch",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test": "jest --coverage"
},
"author": "RJ Zaworski <[email protected]> (http://rjzaworski.com)",
"license": "ISC",
"dependencies": {
"react": "^16.8.4",
"react-redux": "^6.0.1",
"redux": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.11",
"@types/minimist": "^1.2.0",
"@types/node": "^11.11.4",
"@types/react": "^16.8.8",
"@types/react-addons-test-utils": "^0.14.24",
"@types/react-dom": "^16.8.2",
"@types/react-redux": "^7.0.5",
"@types/react-test-renderer": "^16.8.1",
"@types/semver": "^5.5.0",
"@types/sinon": "^7.0.10",
"babel-loader": "^8.0.5",
"coveralls": "^3.0.3",
"http-server": "^0.11.1",
"jest": "^24.5.0",
"jest-cli": "^24.5.0",
"raf": "^3.4.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.8.4",
"react-test-renderer": "^16.8.4",
"sinon": "^7.3.0",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"tslint": "^5.14.0",
"typescript": "^3.3.4000",
"typescript-formatter": "^7.2.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"zakalwe": "^1.0.10"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupFiles": [
"raf/polyfill"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$"
}
}