-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.1 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
{
"name": "@rbb-data/svelte-starter",
"version": "0.0.1",
"private": "true",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"postbuild": "export $(cat .env | xargs) && cp README.md ${BUILD_DIR}",
"deploy": "scripts/deploy-to-gcs.sh --build",
"deploy--experimental": "export $(cat .env | xargs) && scripts/deploy-to-gcs.sh --build /rbb-data-static/${PROJECT_CREATION_DATE}-${PROJECT_NAME}-experimental",
"update:gdoc": "node scripts/update-google-doc.js --preserve-styles && npx prettier --write --plugin-search-dir=. ./src/data/google-doc.json",
"update:gsheet": "node scripts/update-google-sheets.js",
"update:tokens": "node style-dictionary/build.cjs && npx prettier --write --plugin-search-dir=. ./src/lib/tokens.ts ./src/style/_tokens.scss ./src/style/_sass-tokens.scss",
"update:data": "npm run update:gdoc; npm run update:gsheet",
"sync-tokens": "node scripts/sync-tokens-with-figma.cjs && npx prettier --write --plugin-search-dir=. ./style-dictionary/*.json && npm run update:tokens",
"docs:dev": "histoire dev",
"docs:build": "histoire build",
"docs:deploy": "scripts/deploy-docs.sh --build",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"dependencies": {
"chroma-js": "^2.4.2",
"d3-array": "^3.1.1",
"d3-scale": "^4.0.2",
"d3-shape": "^3.1.0",
"friendly-charts": "0.0.17",
"fuzzysort": "^2.0.4",
"layercake": "^7.1.0",
"lodash.debounce": "^4.0.8",
"match-sorter": "^6.3.1"
},
"devDependencies": {
"@googleapis/docs": "^2.0.0",
"@googleapis/sheets": "^4.0.0",
"@histoire/plugin-svelte": "^0.12.4",
"@rollup/plugin-dsv": "^3.0.1",
"@sveltejs/adapter-static": "^1.0.0",
"@sveltejs/kit": "^1.0.1",
"@types/chroma-js": "^2.1.4",
"@types/d3-array": "^3.0.2",
"@types/d3-dsv": "^3.0.0",
"@types/d3-scale": "^4.0.2",
"@types/d3-shape": "^3.1.0",
"@types/lodash.debounce": "^4.0.7",
"@types/sanitize-html": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"archieml": "^0.5.0",
"autoprefixer": "^10.4.4",
"d3-dsv": "^3.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"google-auth-library": "^8.7.0",
"histoire": "^0.12.4",
"postcss": "^8.4.12",
"postcss-load-config": "^4.0.1",
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.5.0",
"sanitize-html": "^2.5.3",
"sass": "^1.49.11",
"style-dictionary": "^3.0.3",
"svelte": "^3.49.0",
"svelte-check": "^3.0.1",
"svelte-preprocess": "^5.0.0",
"svelte2tsx": "^0.6.0",
"typescript": "^4.9.3",
"vite": "^4.0.3"
},
"browserslist": [
">0.2% in DE",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">=16.14"
}
}