-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.67 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
{
"name": "lou-website",
"version": "0.1.0",
"description": "Louise's website",
"main": "index.js",
"author": "Mathias Soeholm",
"license": "MIT",
"private": true,
"scripts": {
"build": "npm-run-all build:*",
"build:backend": "tsc --project tsconfig.backend.json",
"build:backend:watch": "yarn build:backend -- -w",
"build:app": "gatsby build",
"dev": "npm-run-all --parallel build:backend:watch netlifydev",
"develop": "gatsby develop",
"netlifydev": "netlify dev",
"format": "prettier --write src/**/*.{ts,tsx,js,json,md}",
"storybook": "start-storybook -s ./static -p 6006",
"build-storybook": "build-storybook -s ./static"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@octokit/rest": "^17.2.0",
"@sendgrid/mail": "^7.0.0",
"gatsby": "^2.19.45",
"gatsby-image": "^2.3.0",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-emotion": "^4.2.0",
"gatsby-plugin-eslint": "^2.0.8",
"gatsby-plugin-netlify": "^2.2.1",
"gatsby-plugin-ts": "^2.5.0",
"gatsby-source-datocms": "^2.1.29",
"gatsby-source-filesystem": "^2.2.1",
"gatsby-transformer-remark": "^2.7.0",
"graphql": "^14.6.0",
"graphql-request": "^1.8.2",
"graphql-tag": "^2.10.3",
"normalize.css": "^8.0.1",
"query-string": "^6.12.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^5.2.1",
"react-hook-form": "^5.6.0",
"react-icons": "^3.9.0",
"react-share": "^4.1.0",
"react-truncated-text": "^0.1.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@emotion/babel-preset-css-prop": "^10.0.27",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-info": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addon-viewport": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^5.3.18",
"@types/aws-lambda": "^8.10.47",
"@types/css-font-loading-module": "^0.0.4",
"@types/node": "^13.9.1",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/resize-observer-browser": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"ts-loader": "^6.2.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1"
}
}