-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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
{
"name": "dbt-docs-2",
"version": "1.0.0",
"author": "AlexanderKutz <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack serve --open --config webpack.dev.ts",
"build": "webpack --config webpack.prod.ts",
"build_schemas": "yarn ts-node .\\src\\utils\\BuildSchemas.ts"
},
"devDependencies": {
"@types/html-webpack-plugin": "^3.2.5",
"@types/marked": "^2.0.3",
"@types/node": "^15.12.5",
"@types/prismjs": "^1.16.5",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-is": "^17.0.1",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.10",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^3.11.4",
"@types/webpack-merge": "^5.0.0",
"css-loader": "^5.2.6",
"fork-ts-checker-webpack-plugin": "^6.2.12",
"html-inline-script-webpack-plugin": "^2.0.2",
"html-webpack-plugin": "^5.3.2",
"json-schema-to-ts": "^1.6.4",
"json-schema-to-typescript": "^10.1.4",
"prism-themes": "^1.7.0",
"style-loader": "^3.0.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4",
"typescript-plugin-styled-components": "^1.6.0",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"marked": "^2.1.3",
"prismjs": "^1.24.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-router-dom": "^5.2.0",
"styled-components": "^5.3.0"
}
}