This repository was archived by the owner on Apr 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.94 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.94 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
73
74
75
{
"name": "typescript-react-starter",
"version": "1.0.0",
"description": "React Typescript Setup",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc --pretty",
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot --color",
"prod": "cross-env NODE_ENV=production webpack"
},
"keywords": [
"typescript",
"react",
"starter",
"example"
],
"author": "Alex Thornburg",
"license": "ISC",
"devDependencies": {
"@types/enzyme": "^2.7.7",
"@types/jest": "20.0.2",
"@types/nock": "8.2.1",
"@types/react": "15.0.38",
"@types/react-dom": "^15.5.0",
"@types/react-redux": "^4.4.38",
"@types/redux-actions": "^1.2.3",
"@types/redux-logger": "^3.0.0",
"awesome-typescript-loader": "^3.1.2",
"cross-env": "5.0.1",
"enzyme": "^2.8.2",
"extract-text-webpack-plugin": "3.0.0",
"html-webpack-plugin": "2.29.0",
"jest": "20.0.4",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-typescript": "^3.0.0",
"karma-typescript-preprocessor": "^0.3.1",
"nock": "^9.0.13",
"react-hot-loader": "1.3.1",
"react-test-renderer": "^15.5.4",
"safe-mock": "0.2.10",
"source-map-loader": "^0.2.1",
"stylelint-webpack-plugin": "0.8.0",
"typescript": "^2.4.1",
"webpack-dev-server": "^2.4.2",
"webpack-merge": "4.1.0",
"write-file-webpack-plugin": "4.1.0"
},
"dependencies": {
"axios": "0.16.2",
"react": "^15.5.3",
"react-dom": "^15.5.3",
"react-redux": "5.0.5",
"redux": "3.7.2",
"redux-actions": "2.2.1",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"webpack": "3.2.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/__test__/*.(ts|tsx)"
]
},
"repository": "git@github.com:codebandits/typescript-react-starter.git"
}