-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.22 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
{
"name": "cmsvelte",
"version": "1.0.0",
"description": "A Svelte template built with newsroom CMS's in mind",
"homepage": "https://github.com/sawyerclick/cmsvelte#readme",
"repository": {
"type": "git",
"url": "https://github.com/sawyerclick/cmsvelte.git"
},
"bugs": {
"url": "https://github.com/sawyerclick/cmsvelte/issues",
"email": "sawyerclick@gmail.com"
},
"license": "MIT",
"author": {
"name": "Sawyer Click",
"email": "sawyerclick@gmail.com",
"url": "https://www.sawyer.codes"
},
"contributors": [
"Kazi Awal"
],
"keywords": [
"cmsv",
"svelte",
"newsroom",
"data vizualization",
"embeds"
],
"type": "module",
"browserslist": [
"supports es6-module"
],
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview --host",
"check": "svelte-check --tsconfig ./tsconfig.json",
"fetch:gdoc": "node scripts/fetch_copy.js",
"fetch:data": "node scripts/fetch_sheet.js",
"sync:s3": "node scripts/sync-s3.js",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.484.0",
"@rollup/plugin-dsv": "^3.0.4",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tsconfig/svelte": "^5.0.2",
"@types/d3": "^7.4.3",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"autoprefixer": "^10.4.16",
"compression": "^1.7.4",
"cssnano": "^6.0.2",
"d3": "^7.8.5",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-svelte": "^2.35.1",
"journalize": "^2.6.0",
"layercake": "^7.6.1",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"postcss": "^8.4.32",
"postcss-load-config": "^5.0.2",
"postcss-nested": "^6.0.1",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"s3-sync-client": "^4.3.1",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"svelte-preprocess": "^5.1.3",
"tailwindcss": "^3.4.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-imagetools": "^5.1.2",
"vite-plugin-css-injected-by-js": "^3.3.1"
},
"dependencies": {
"archieml": "^0.5.0",
"html-entities": "^2.4.0",
"htmlparser2": "^9.0.0",
"node-fetch": "^3.3.2"
}
}