forked from AI-Global/rai-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.98 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "rai-website",
"version": "1.0.0",
"private": true,
"description": "RAI Website",
"engines": {
"node": "12.13.0"
},
"engineStrict": true,
"author": "cphillips17",
"keywords": [
"gatsby"
],
"scripts": {
"start:gatsby": "npm run develop",
"start:storybook": "wait-on http://localhost:8000/ && npm run storybook",
"start:codegen": "wait-on http://localhost:8000/ && npm run codegen -- -w",
"start": "node startScript.js",
"postinstall": "husky install",
"develop": "gatsby develop -H 0.0.0.0 -p 8000 --open",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:md": "prettier --check '**/*.{md,mdx}' --write",
"lint": "npm run lint:js && npm run lint:md",
"test": "jest --coverage",
"typecheck": "tsc --noEmit --project tsconfig.json",
"cssTypes": "tcm src/components",
"storybook": "start-storybook -p 8100 -s public",
"build-storybook": "build-storybook -s public",
"publish-storybook": "npm run build && npm run build-storybook",
"codegen": "graphql-codegen --config codegen.yml",
"generate:types": "gatsby build --die-on-codegen"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.0.0",
"@contentful/rich-text-types": "^14.1.2",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"autoprefixer": "^10.3.4",
"classnames": "^2.3.1",
"concurrently": "^6.2.0",
"dotenv": "^8.4.0",
"framer-motion": "^4.1.13",
"gatsby": "^3.2.1",
"gatsby-plugin-google-gtag": "^3.6.0",
"gatsby-plugin-image": "^1.2.1",
"gatsby-plugin-manifest": "^3.2.0",
"gatsby-plugin-react-helmet": "^4.2.0",
"gatsby-plugin-sharp": "^3.2.1",
"gatsby-plugin-sitemap": "^3.2.0",
"gatsby-plugin-social9-socialshare": "^1.0.5",
"gatsby-source-contentful": "^5.2.1",
"gatsby-source-filesystem": "^3.2.0",
"gatsby-transformer-sharp": "^3.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-feather": "^2.0.9",
"react-helmet": "^6.1.0",
"react-modal": "^3.13.1",
"swiper": "^7.0.2",
"ts-xor": "^1.0.8",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"use-resize-observer": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@graphql-codegen/cli": "1.21.5",
"@graphql-codegen/typescript": "1.22.3",
"@graphql-codegen/typescript-operations": "1.18.2",
"@storybook/addon-a11y": "^6.2.9",
"@storybook/addon-actions": "^6.3.0-beta.6",
"@storybook/addon-essentials": "^6.3.0-beta.6",
"@storybook/addon-links": "^6.3.0-beta.6",
"@storybook/builder-webpack5": "^6.3.0-beta.6",
"@storybook/manager-webpack5": "^6.3.0-beta.6",
"@storybook/react": "^6.3.0-beta.6",
"@types/jest": "^26.0.23",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-loader": "^8.2.2",
"babel-plugin-remove-graphql-queries": "^3.7.1",
"babel-preset-react-app": "^10.0.0",
"css-loader": "^5.2.6",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-plugin-graphql-codegen": "^3.0.0",
"gatsby-plugin-postcss": "^4.6.0",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"storybook-css-modules-preset": "^1.1.1",
"style-loader": "^2.0.0",
"typed-css-modules": "^0.6.8",
"typed-css-modules-loader": "0.0.18",
"typescript": "^4.2.4",
"wait-on": "^5.3.0"
}
}