-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
90 lines (90 loc) · 3.39 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "starter-pack",
"version": "1.0.0",
"description": "React + Redux + Auth0",
"license": "MIT",
"scripts": {
"dev": "cross-env TS_NODE_PROJECT=tsconfig-webpack.json ts-node server.ts",
"build": "rimraf dist && cross-env NODE_ENV=production TS_NODE_PROJECT=tsconfig-webpack.json webpack --config ./webpack.prod.config.ts --progress --profile --colors",
"prod": "cross-env NODE_ENV=production TS_NODE_PROJECT=tsconfig-webpack.json ts-node server.ts",
"lint": "eslint ./ --ext ts,tsx",
"analyze-dev": "rimraf stats.json && cross-env TS_NODE_PROJECT=tsconfig-webpack.json webpack --config webpack.config.ts --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"analyze-prod": "rimraf stats.json && cross-env NODE_ENV=production TS_NODE_PROJECT=tsconfig-webpack.json webpack --config webpack.prod.config.ts --profile --json > stats.json && webpack-bundle-analyzer stats.json"
},
"repository": {
"type": "git",
"url": "https://github.com/jch254/starter-pack"
},
"author": "Jordan Hornblow <[email protected]>",
"dependencies": {
"@auth0/auth0-spa-js": "^1.10.0",
"connected-react-router": "^6.8.0",
"history": "^4.10.1",
"immer": "^7.0.5",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.27.0",
"query-string": "5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-ga": "^3.0.0",
"react-loading": "^2.0.3",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"rebass": "2.3.4",
"redux": "^4.0.5",
"redux-saga": "^v1.1.3",
"reselect": "^4.0.0",
"styled-components": "3.4.10",
"typescript-fsa": "^3.0.0",
"typescript-fsa-reducers": "^1.2.1",
"typescript-fsa-redux-saga": "^2.0.0"
},
"devDependencies": {
"@types/history": "^4.7.6",
"@types/html-webpack-plugin": "3.2.3",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/node": "^14.0.14",
"@types/optimize-css-assets-webpack-plugin": "^5.0.1",
"@types/query-string": "5.1.0",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/terser-webpack-plugin": "^3.0.0",
"@types/webpack": "^4.41.18",
"@types/webpack-dev-server": "^3.11.0",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/eslint-plugin-tslint": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"eslint-plugin-css-modules": "^2.11.0",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^5.0.6",
"html-webpack-plugin": "^3.2.0",
"inline-manifest-webpack-plugin": "^4.0.2",
"map.prototype.tojson": "^0.1.3",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"redux-devtools-extension": "^2.13.8",
"rimraf": "^3.0.2",
"source-map-loader": "^1.0.1",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.6",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"tsutils": "^3.17.1",
"typescript": "^3.9.6",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-chunk-hash": "^0.6.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}