-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
68 lines (68 loc) · 2 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
{
"name": "Gallery",
"version": "0.5.5",
"description": "Track activity of specified projects, Github like activity board",
"author": "darakah",
"main": "main.js",
"license": "MIT",
"scripts": {
"lint": "svelte-check && eslint . --ext .ts",
"build": "npm run lint && rollup -c",
"dev": "rollup --config rollup.config.js -w"
},
"dependencies": {
"canvas": "^2.7.0",
"codemirror": "^5.60.0",
"extract-colors": "^1.1.18",
"obsidian": "obsidianmd/obsidian-api#master",
"rollup-plugin-copy": "^3.4.0",
"svelte": "^3.32.3",
"svelte-grid": "^4.0.0",
"svelte-image": "^0.1.9",
"svelte-image-gallery": "^1.3.0",
"svelte-swipe": "^1.8.0",
"tslib": "2.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "17.1.0",
"@rollup/plugin-node-resolve": "11.1.1",
"@rollup/plugin-typescript": "8.1.1",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/svelte": "3.0.3",
"@tsconfig/svelte": "1.0.10",
"@types/jest": "26.0.20",
"@types/moment": "2.13.0",
"@types/node": "14.14.25",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"eslint": "7.19.0",
"jest": "26.6.3",
"moment": "2.29.1",
"rollup": "2.38.5",
"rollup-plugin-svelte": "7.1.0",
"svelte-check": "1.1.34",
"svelte-jester": "1.3.0",
"svelte-preprocess": "4.6.8",
"ts-jest": "26.5.1",
"typescript": "4.1.5"
},
"jest": {
"moduleNameMapper": {
"src/(.*)": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.svelte$": [
"svelte-jester",
{
"preprocess": true
}
],
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts",
"svelte"
]
}
}