forked from rjz/typescript-react-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.78 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.78 KB
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
{
"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 run test && webpack",
"watch": "webpack --watch",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test": "jest --coverage"
},
"author": "RJ Zaworski <rj@rjzaworski.com> (http://rjzaworski.com)",
"license": "ISC",
"dependencies": {
"react": "16.0.0",
"react-redux": "5.0.6",
"redux": "3.7.2",
"redux-thunk": "2.2.0"
},
"devDependencies": {
"@types/jest": "21.1.2",
"@types/minimist": "1.2.0",
"@types/node": "8.0.32",
"@types/react": "16.0.9",
"@types/react-addons-test-utils": "0.14.20",
"@types/react-dom": "16.0.0",
"@types/react-redux": "5.0.10",
"@types/semver": "5.4.0",
"@types/sinon": "2.3.5",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"coveralls": "3.0.0",
"http-server": "0.10.0",
"jest": "21.2.1",
"jest-cli": "21.2.1",
"raf": "3.4.0",
"react-addons-test-utils": "15.6.2",
"react-dom": "16.0.0",
"react-test-renderer": "16.0.0",
"sinon": "4.0.1",
"source-map-loader": "0.2.2",
"ts-jest": "21.0.1",
"ts-loader": "2.3.7",
"tslint": "5.7.0",
"typescript": "2.5.3",
"webpack": "3.6.0",
"webpack-fail-plugin": "2.0.0",
"zakalwe": "1.0.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupFiles": [
"raf/polyfill"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$"
}
}