forked from dbt-labs/docs.getdbt.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.79 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
{
"scripts": {
"prestart": "npm run prepare",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"test": "npx jest --watch",
"lint": "eslint --cache",
"lintAll": "eslint . --fix",
"prepare": "cd .. && husky install"
},
"dependencies": {
"@docusaurus/core": "2.3.1",
"@docusaurus/plugin-ideal-image": "2.3.1",
"@docusaurus/preset-classic": "2.3.1",
"@docusaurus/theme-search-algolia": "2.3.1",
"@mdx-js/react": "^1.6.21",
"@monaco-editor/react": "^4.4.6",
"@svgr/webpack": "^6.0.0",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"clsx": "^1.1.1",
"color": "^3.1.2",
"core-js": "^3.20.0",
"feed": "^4.2.2",
"file-loader": "^6.2.0",
"fs": "0.0.2",
"gray-matter": "^4.0.3",
"hast-util-is-element": "^1.1.0",
"js-yaml": "^4.1.0",
"mobx": "^6.3.9",
"node-polyfill-webpack-plugin": "^1.1.4",
"papaparse": "^5.3.2",
"prism-react-renderer": "^1.2.1",
"raw-loader": "^4.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-full-screen": "^1.1.1",
"react-is": "^18.1.0",
"react-tooltip": "^4.2.21",
"redoc": "^2.0.0-rc.57",
"rehype-katex": "^5.0.0",
"remark-math": "^3.0.1",
"sanitize-html": "^2.8.0",
"slugify": "^1.6.1",
"styled-components": "5.3.3",
"swiper": "^8.4.3",
"url-loader": "^4.1.1"
},
"optionalDependencies": {
"@dbt-labs/react-dbt-dag": "0.8.7"
},
"devDependencies": {
"@cypress/react": "^7.0.2",
"@cypress/webpack-dev-server": "^3.2.3",
"@docusaurus/eslint-plugin": "2.3.1",
"@swc/core": "^1.2.174",
"@swc/jest": "^0.2.20",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"css-loader": "^3.4.2",
"cypress": "^12.6.0",
"dotenv": "^10.0.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"lint-staged": "^13.1.2",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-http": "^3.2.0",
"style-loader": "^1.1.3",
"svg-inline-loader": "^0.8.2",
"tty-browserify": "0.0.1",
"webpack": "^5.75.0",
"webpack-dev-server": "^4.11.1"
},
"jest": {
"transform": {
"^.+\\.(js|jsx)$": "@swc/jest"
},
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"moduleNameMapper": {
"\\.css$": "<rootDir>/static/css/__mocks__/styleMock.js"
}
},
"version": "0.0.0",
"lint-staged": {
"*.{js,ts,jsx,tsx,md}": "npm run lint"
}
}