forked from JakobKallin/Fiascomputer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.62 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
{
"name": "fiascomputer",
"version": "2.0.0",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"preview": "svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"array-shuffle": "^3.0.0",
"idb": "^7.0.0",
"pdfjs-dist": "^2.13.216",
"ramda": "^0.28.0",
"ts-extras": "^0.10.0"
},
"devDependencies": {
"@sveltejs/adapter-auto": "next",
"@sveltejs/adapter-static": "next",
"@sveltejs/kit": "next",
"@types/jest": "^27.4.1",
"@types/ramda": "^0.28.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"esbuild": "^0.14.23",
"esbuild-jest": "^0.5.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.4.1",
"jest": "^27.5.1",
"prettier": "~2.5.1",
"prettier-plugin-svelte": "^2.6.0",
"sass": "^1.49.9",
"svelte": "^3.46.4",
"svelte-check": "^2.4.5",
"svelte-preprocess": "^4.10.4",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"type": "module",
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"\\$lib/(.*)": "<rootDir>/src/lib/$1"
},
"testEnvironment": "jsdom",
"transform": {
"^.+\\.tsx?$": [
"esbuild-jest",
{
"sourcemap": true,
"format": "esm",
"loaders": {
".spec.ts": "ts"
}
}
]
}
}
}