forked from BradeyYWhitlock/react-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.02 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
{
"name": "reactShell",
"version": "1.0.0",
"description": "",
"main": "index.tsx",
"scripts": {
"start": "webpack-dev-server --env.NODE_ENV='local' --config ./webpack/webpack.local.config.js",
"build": "webpack --env.NODE_ENV='production' --config ./webpack/webpack.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"await-to-js": "^2.1.1",
"axios": "^0.18.0",
"emailjs-com": "^2.4.1",
"lodash.debounce": "^4.0.8",
"moment": "^2.24.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-ga": "^2.5.7",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.0",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@types/node": "^11.13.7",
"@types/react": "^16.9.2",
"@types/react-autosuggest": "^9.3.10",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.2",
"@types/react-router-dom": "^4.3.2",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"css-loader": "^3.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-sort-imports-es6-autofix": "^0.4.0",
"eslint-plugin-typescript": "^0.14.0",
"fibers": "^4.0.2",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"jest-css-modules-transform": "^2.1.1",
"lodash.merge": "^4.6.2",
"moment": "^2.24.0",
"node-sass": "^4.11.0",
"redux-devtools-extension": "^2.13.8",
"sass": "^1.23.3",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.2.1",
"typescript": "^3.6.4",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
}
}