This repository was archived by the owner on May 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.56 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.56 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"private": true,
"name": "marble",
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"@akord/rich-markdown-editor": "^11.24.1",
"@ndlib/aws-opensearch": "^1.0.8",
"@ndlib/gatsby-source-appsync-marble": "*",
"@ndlib/gatsby-theme-marble": "*",
"@okta/okta-auth-js": "^6.8.1",
"aws-appsync": "^4.1.1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"gatsby": "^5.3.2",
"gatsby-plugin-google-tagmanager": "^5.3.1",
"gatsby-plugin-image": "^3.3.2",
"gatsby-plugin-manifest": "^5.3.1",
"gatsby-plugin-preconnect": "^1.4.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-s3": "^0.3.8",
"gatsby-plugin-sharp": "^5.3.2",
"gatsby-plugin-typography": "^5.3.0",
"gatsby-source-filesystem": "^5.3.1",
"gatsby-source-graphql": "^5.3.1",
"gatsby-transformer-json": "^5.3.0",
"gatsby-transformer-marbleitem": "*",
"gatsby-transformer-remark": "^6.3.1",
"gatsby-transformer-sharp": "^5.3.1",
"graphql": "^16.6.0",
"js-base64": "^3.7.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.2.0",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.5",
"typography": "^0.16.21"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-eslint": "^10.0.2",
"babel-jest": "^26.0.1",
"babel-preset-gatsby": "^1.5.0",
"enzyme": "^3.9.0",
"eslint": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-flowtype": "^5.1.3",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"eslint-plugin-standard": "^5.0.0",
"gatsby-plugin-root-import": "^2.0.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"jest-environment-enzyme": "^7.0.2",
"jest-enzyme": "^7.0.2",
"nock": "^13.0.6",
"prettier": "^2.0.5",
"react-dev-utils": "^12.0.1"
},
"scripts": {
"test": "jest",
"watch": "jest --watchAll --coverage",
"build": "gatsby build",
"develop": "gatsby develop",
"clean": "gatsby clean",
"serve": "gatsby serve",
"deploy": "gatsby-plugin-s3 deploy --yes"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "<rootDir>/jest/preprocess.js"
},
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file-mock.js",
"^gatsby-page-utils/(.*)$": "gatsby-page-utils/dist/$1",
"^gatsby-core-utils/(.*)$": "gatsby-core-utils/dist/$1",
"^gatsby-plugin-utils/(.*)$": [
"gatsby-plugin-utils/dist/$1",
"gatsby-plugin-utils/$1"
]
},
"testPathIgnorePatterns": [
"node_modules",
".cache"
],
"transformIgnorePatterns": [
"node_modules/(?!(gatsby)/)"
],
"globals": {
"__PATH_PREFIX__": ""
},
"testURL": "http://localhost",
"setupFilesAfterEnv": [
"./jest/enzyme-setup.js"
],
"setupFiles": [
"<rootDir>/jest/loadershim.js"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"peerDependencies": {
"graphql": "^15.5.0"
},
"resolutions": {
"prosemirror-model": "1.9.1"
}
}