@datawheel/bespoke 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/dist/Viz-41329377.js +368 -0
- package/dist/Viz-41329377.js.map +1 -0
- package/dist/Viz-ef983f01.js +368 -0
- package/dist/Viz-ef983f01.js.map +1 -0
- package/dist/index-9c337b90.js +6680 -0
- package/dist/index-9c337b90.js.map +1 -0
- package/dist/index-cf73f4fa.js +6680 -0
- package/dist/index-cf73f4fa.js.map +1 -0
- package/dist/index.js +53 -0
- package/dist/index.js.map +1 -0
- package/dist/server.js +2944 -0
- package/dist/server.js.map +1 -0
- package/dist/style.css +765 -0
- package/package.json +125 -0
package/package.json
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@datawheel/bespoke",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Content management system for creating automated data reports",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.js",
|
|
7
|
+
"style": "dist/style.css",
|
|
8
|
+
"types": "index.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": "./dist/index.js",
|
|
11
|
+
"./server": "./dist/server.js"
|
|
12
|
+
},
|
|
13
|
+
"files": ["dist", "README.md"],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"postinstall": "rollup -c",
|
|
16
|
+
"build": "rollup -c",
|
|
17
|
+
"watch": "rollup -cw",
|
|
18
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
19
|
+
"lint": "../../node_modules/.bin/eslint"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/Datawheel/reports.git"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"cms",
|
|
27
|
+
"data",
|
|
28
|
+
"reports",
|
|
29
|
+
"datawheel"
|
|
30
|
+
],
|
|
31
|
+
"author": "Jimmy Mullen",
|
|
32
|
+
"license": "ISC",
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/Datawheel/reports/issues"
|
|
35
|
+
},
|
|
36
|
+
"homepage": "https://github.com/Datawheel/reports#readme",
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@emotion/react": "^11.10.4",
|
|
39
|
+
"@mantine/core": "^5.6.3",
|
|
40
|
+
"@mantine/dates": "^5.6.3",
|
|
41
|
+
"@mantine/dropzone": "^5.6.3",
|
|
42
|
+
"@mantine/form": "^5.6.3",
|
|
43
|
+
"@mantine/hooks": "^5.6.3",
|
|
44
|
+
"@mantine/notifications": "^5.6.3",
|
|
45
|
+
"@mantine/prism": "^5.6.3",
|
|
46
|
+
"@monaco-editor/react": "^4.4.5",
|
|
47
|
+
"@reduxjs/toolkit": "^1.8.4",
|
|
48
|
+
"@tabler/icons": "^1.106.0",
|
|
49
|
+
"@tinymce/tinymce-react": "^4.2.0",
|
|
50
|
+
"axios": "^0.26.1",
|
|
51
|
+
"base58": "^2.0.1",
|
|
52
|
+
"buble": "^0.20.0",
|
|
53
|
+
"comment-parser": "^1.3.1",
|
|
54
|
+
"d3-array": "^3.1.6",
|
|
55
|
+
"d3-collection": "^1.0.7",
|
|
56
|
+
"d3-dsv": "^1.2.0",
|
|
57
|
+
"d3-format": "^3.1.0",
|
|
58
|
+
"d3-selection": "^2.0.0",
|
|
59
|
+
"d3-time-format": "^4.1.0",
|
|
60
|
+
"d3plus-axis": "^1.1.3",
|
|
61
|
+
"d3plus-common": "^1.1.0",
|
|
62
|
+
"d3plus-export": "^1.1.0",
|
|
63
|
+
"d3plus-format": "^1.1.1",
|
|
64
|
+
"d3plus-react": "^1.1.1",
|
|
65
|
+
"d3plus-text": "^1.0.2",
|
|
66
|
+
"d3plus-viz": "^1.2.2",
|
|
67
|
+
"file-loader": "^6.2.0",
|
|
68
|
+
"file-saver": "^1.3.3",
|
|
69
|
+
"flickr-sdk": "^6.0.0",
|
|
70
|
+
"formidable": "^1.2.6",
|
|
71
|
+
"html-to-image": "^1.10.8",
|
|
72
|
+
"jsonwebtoken": "^8.5.1",
|
|
73
|
+
"jszip": "^3.10.1",
|
|
74
|
+
"lunr": "^2.3.9",
|
|
75
|
+
"lunr-languages": "^1.9.0",
|
|
76
|
+
"mantine-datatable": "^1.7.9",
|
|
77
|
+
"monaco-themes": "^0.4.2",
|
|
78
|
+
"next-redux-wrapper": "^7.0.0",
|
|
79
|
+
"nextjs-cors": "^2.1.1",
|
|
80
|
+
"normalizr": "^3.6.2",
|
|
81
|
+
"path": "^0.12.7",
|
|
82
|
+
"pg": "^8.7.3",
|
|
83
|
+
"pretty-format": "^28.1.1",
|
|
84
|
+
"react": "^17.0.2",
|
|
85
|
+
"react-beautiful-dnd": "^13.1.0",
|
|
86
|
+
"react-clipboard.js": "^2.0.16",
|
|
87
|
+
"react-icons": "^4.3.1",
|
|
88
|
+
"react-redux": "^7.2.6",
|
|
89
|
+
"react-router-dom": "^6.3.0",
|
|
90
|
+
"react-share": "^4.4.0",
|
|
91
|
+
"react-table-6": "^6.11.0",
|
|
92
|
+
"sequelize": "^6.17.0",
|
|
93
|
+
"sharp": "^0.31.0",
|
|
94
|
+
"shelljs": "^0.8.5",
|
|
95
|
+
"slugify": "^1.6.5",
|
|
96
|
+
"unsplash-js": "^7.0.15",
|
|
97
|
+
"xlsx": "^0.18.5",
|
|
98
|
+
"yn": "^5.0.0"
|
|
99
|
+
},
|
|
100
|
+
"devDependencies": {
|
|
101
|
+
"@types/express": "^4.17.13",
|
|
102
|
+
"@types/node": "^17.0.21",
|
|
103
|
+
"@types/react-beautiful-dnd": "^13.1.2",
|
|
104
|
+
"@typescript-eslint/eslint-plugin": "^5.15.0",
|
|
105
|
+
"@typescript-eslint/parser": "^5.15.0",
|
|
106
|
+
"autoprefixer": "^10.0.0",
|
|
107
|
+
"esbuild": "^0.15.16",
|
|
108
|
+
"eslint": "^8.11.0",
|
|
109
|
+
"eslint-import-resolver-typescript": "^3.5.2",
|
|
110
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
111
|
+
"eslint-plugin-react": "^7.29.4",
|
|
112
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
113
|
+
"monaco-editor": "^0.34.1",
|
|
114
|
+
"postcss": "^8.0.0",
|
|
115
|
+
"postcss-mixins": "^9.0.4",
|
|
116
|
+
"postcss-nested": "^6.0.0",
|
|
117
|
+
"rollup": "^2.79.1",
|
|
118
|
+
"rollup-plugin-cleaner": "^1.0.0",
|
|
119
|
+
"rollup-plugin-esbuild": "^5.0.0",
|
|
120
|
+
"rollup-plugin-styles": "^4.0.0"
|
|
121
|
+
},
|
|
122
|
+
"peerDependencies": {
|
|
123
|
+
"next": "^12.1.0"
|
|
124
|
+
}
|
|
125
|
+
}
|