-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.25 KB
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
{
"name": "treeify",
"private": true,
"license": "Apache-2.0",
"scripts": {
"build-development": "cross-env NODE_ENV=development rollup -c",
"build-dogfooding": "cross-env NODE_ENV=dogfooding rollup -c",
"build-production": "cross-env NODE_ENV=production rollup -c",
"format": "run-p format:*",
"format:prettier": "prettier --write \"src/**/*.{ts,tsx,svelte}\"",
"format:package-json": "sort-package-json",
"svelte-check": "svelte-check",
"update-package": "ncu -u",
"postupdate-package": "npm i",
"watch-development": "cross-env NODE_ENV=development rollup -c -w",
"watch-dogfooding": "cross-env NODE_ENV=dogfooding rollup -c -w",
"watch-production": "cross-env NODE_ENV=production rollup -c -w"
},
"dependencies": {
"color": "^4.2.1",
"dayjs": "^1.10.7",
"fastest-levenshtein": "^1.0.12",
"focus-trap": "^6.7.3",
"fp-ts": "^2.11.8",
"highlight.js": "^11.4.0",
"katex": "^0.15.2",
"mnemonist": "^0.39.0",
"nanoid": "^3.3.1",
"object-path": "^0.11.8",
"power-radix": "^2.5.6",
"ua-parser-js": "^1.0.2"
},
"devDependencies": {
"@csstools/postcss-oklab-function": "^1.0.1",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.1.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/chrome": "^0.0.178",
"@types/color": "^3.0.3",
"@types/katex": "^0.11.1",
"@types/object-path": "^0.11.1",
"@types/power-radix": "^2.5.0",
"@types/ua-parser-js": "^0.7.36",
"cross-env": "^7.0.3",
"npm-check-updates": "^12.4.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.6.0",
"rollup": "^2.67.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-svelte": "^7.1.0",
"sass": "^1.49.8",
"sort-package-json": "^1.54.0",
"svelte": "^3.46.4",
"svelte-check": "^2.4.5",
"svelte-preprocess": "^4.10.3",
"type-fest": "^2.12.0",
"typescript": "^4.5.5"
},
"volta": {
"node": "16.14.0"
}
}