-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.85 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.85 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@derekmisler/portfolio-calculator",
"private": true,
"description": "Simple calculator for asset allocation.",
"version": "0.1.0",
"license": "MIT",
"author": "Derek Misler <derekmisler@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/derekmisler/portfolio-calculator"
},
"bugs": {
"url": "https://github.com/derekmisler/portfolio-calculator/issues"
},
"keywords": [
"gatsby",
"redux",
"immutable"
],
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "rm -rf yarn.lock && gatsby clean && yarn install",
"test": "jest",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"dependencies": {
"@material-ui/core": "^4.9.3",
"@material-ui/icons": "^4.9.1",
"@types/lodash": "^4.14.149",
"firebase": "^7.8.1",
"formik": "^2.1.4",
"gatsby": "^2.19.7",
"gatsby-image": "^2.2.39",
"gatsby-plugin-manifest": "^2.2.39",
"gatsby-plugin-offline": "^3.0.32",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-sharp": "^2.4.3",
"gatsby-plugin-typescript": "^2.1.27",
"gatsby-plugin-typography": "^2.3.22",
"gatsby-source-filesystem": "^2.1.46",
"gatsby-transformer-sharp": "^2.3.13",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.15",
"query-string": "^6.10.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-redux": "^7.1.3",
"react-text-mask": "^5.4.3",
"react-typography": "^0.16.19",
"redux": "^4.0.5",
"redux-immutable": "^4.0.0",
"redux-saga": "^1.1.3",
"redux-saga-firebase": "^0.15.0",
"reselect": "^4.0.0",
"styled-components": "^5.0.1",
"styled-system": "^5.1.4",
"text-mask-addons": "^3.8.0",
"typescript": "^3.7.5",
"typography": "^0.16.19",
"uuid": "^3.4.0",
"yup": "^0.28.1"
},
"devDependencies": {
"@types/node": "^13.7.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.15",
"@types/react-redux": "^7.1.7",
"@types/react-text-mask": "^5.4.6",
"@types/redux-immutable": "^4.0.1",
"@types/styled-components": "^4.4.2",
"@types/styled-system": "^5.1.6",
"@types/typography": "^0.16.3",
"@types/uuid": "^3.4.7",
"@types/yup": "^0.26.30",
"babel-jest": "^25.1.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-gatsby": "^0.2.29",
"dotenv": "^8.2.0",
"gatsby-plugin-root-import": "^2.0.5",
"gatsby-plugin-styled-components": "^3.1.19",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"react-test-renderer": "^16.13.0",
"redux-devtools-extension": "^2.13.8"
}
}