-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.75 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
{
"name": "json-schema-viewer",
"version": "1.0.0",
"description": "Teselagen's JSON Schema viewer",
"author": "Teselagen Biotechnology www.teselagen.com",
"license": "MIT",
"private": true,
"dependencies": {
"@atlaskit/atlassian-navigation": "^0.12.5",
"@atlaskit/breadcrumbs": "^10.1.0",
"@atlaskit/button": "^15.1.4",
"@atlaskit/code": "^13.1.1",
"@atlaskit/css-reset": "^6.0.5",
"@atlaskit/empty-state": "^7.1.5",
"@atlaskit/icon": "^21.2.0",
"@atlaskit/logo": "^13.0.7",
"@atlaskit/lozenge": "^10.1.0",
"@atlaskit/menu": "^0.7.0",
"@atlaskit/popup": "^1.0.6",
"@atlaskit/spinner": "^15.0.6",
"@atlaskit/tabs": "^12.1.2",
"@atlaskit/textfield": "^5.0.0",
"@atlaskit/theme": "^11.0.2",
"@atlaskit/tooltip": "^17.1.2",
"@monaco-editor/react": "^4.0.7",
"js-yaml": "^4.0.0",
"jsonpointer": "^4.1.0",
"monaco-editor": "^0.21.3",
"react": "^16.8",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.8",
"react-markdown": "^5.0.3",
"react-router-dom": "^5.2.0",
"styled-components": "^3.2",
"throttle-debounce": "^3.0.1",
"ts-is-present": "^1.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@compiled/babel-plugin": "^0.6.0",
"@storybook/addon-actions": "^6.1.15",
"@storybook/addon-essentials": "^6.1.15",
"@storybook/addon-links": "^6.1.15",
"@storybook/react": "^6.1.15",
"@types/js-yaml": "^4.0.0",
"@types/react": "^16.8",
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-dom": "^16.8",
"@types/react-router-dom": "^5.1.7",
"@types/throttle-debounce": "^2.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"concurrently": "^8.0.1",
"copy-webpack-plugin": "6.x.x",
"csp-html-webpack-plugin": "^5.1.0",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^5.0.0-beta.4",
"http-server": "^14.1.1",
"json-schema-to-typescript": "^10.1.2",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"source-map-loader": "^2.0.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.12.2",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1",
"webpack-merge": "^5.7.3"
},
"scripts": {
"start": "concurrently --kill-others \"npm run start-watch\" \"npm run serve\"",
"start-watch": "webpack -c webpack.dev.js --watch",
"clean": "rm -rf *.zip source/witch/nodejs/node_modules/",
"storybook": "start-storybook -p 6006",
"gen-schema": "json2ts json-schema.draft-07.json > src/schema.ts",
"serve": "http-server docs index.html 8081"
}
}