This repository has been archived by the owner on Apr 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.36 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": "idealo.design",
"version": "1.0.0",
"description": "An interactive catalog for our Design System",
"private": true,
"main": "index.js",
"scripts": {
"test:unit": "cross-env NODE_OPTIONS=--experimental-vm-modules jest ./src/__tests__",
"test:consumer": "cross-env NODE_OPTIONS=--experimental-vm-modules jest ./src/ui",
"test:provider": "cross-env NODE_OPTIONS=--experimental-vm-modules S3_BUCKET=mybucket jest ./src/server",
"build": "webpack"
},
"jest": {
"verbose": true,
"roots": [
"src/__tests__"
]
},
"author": "Nicolas Forgerit <[email protected]>",
"license": "ISC",
"engines": {
"node": ">=13.9.0 <14"
},
"resolutions": {
"webpack": "5.7.0"
},
"dependencies": {
"@mdx-js/loader": "^1.6.22",
"@pact-foundation/pact": "^9.15.5",
"@storybook/react": "^6.2.9",
"@storybook/ui": "^6.1.15",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"aws-sdk": "^2.960.0",
"babel-jest": "^26.6.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-preval": "^4.0.0",
"body-parser": "^1.19.0",
"busboy": "^0.3.1",
"classnames": "^2.2.6",
"connect-redis": "^5.0.0",
"cors": "^2.8.5",
"cross-fetch": "^3.0.6",
"draft-js": "^0.11.7",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fs-extra": "^9.1.0",
"graphql": "^15.5.0",
"html-to-text": "^7.1.1",
"identity-obj-proxy": "^3.0.0",
"isomorphic-style-loader": "^5.1.0",
"jsonmark": "0.0.1",
"markdown-it": "^10.0.0",
"markdown-to-jsx": "^6.11.4",
"mini-css-extract-plugin": "^1.3.4",
"mock-fs": "^5.0.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-fetch": "^2.6.1",
"node-postgres": "^0.6.2",
"node-sass": "^4.13.1",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-oauth": "^1.0.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"postgres": "^1.0.2",
"process": "^0.11.10",
"react": "^17.0.2",
"react-cookie-consent": "^6.2.4",
"react-dom": "^17.0.2",
"react-highlight": "^0.12.0",
"react-modal": "^3.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-select": "^4.3.0",
"react-syntax-highlighter": "^12.2.1",
"react-test-renderer": "^17.0.2",
"redis": "^3.1.2",
"sequelize": "^6.6.5",
"slugify": "^1.4.6",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@webpack-cli/init": "^1.0.3",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"babel-plugin-inline-react-svg": "^1.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"form-data": "^3.0.1",
"html-to-react": "^1.4.5",
"html-webpack-plugin": "^4.5.1",
"jest": "^26.6.3",
"jest-pact": "^0.9.0",
"prettier": "^2.3.2",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^3.0.0"
}
}