-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.35 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
{
"name": "very-short-introductions",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"fetch-books": "node --loader ts-node/esm/transpile-only --no-warnings ./scripts/fetch-books.ts",
"process-subject-books": "node --loader ts-node/esm/transpile-only --no-warnings ./scripts/process-subject-books.ts",
"parse-subjects": "node --loader ts-node/esm/transpile-only --no-warnings ./scripts/parse-subjects.ts",
"purge-subject-tree": "node --loader ts-node/esm/transpile-only --no-warnings ./scripts/purge-subject-tree.ts",
"books-by-country": "node --loader ts-node/esm/transpile-only --no-warnings ./scripts/books-by-country.ts"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.30",
"@tsconfig/svelte": "^2.0.1",
"@types/node": "^17.0.34",
"country-list": "^2.2.0",
"csv-string": "^4.1.0",
"got": "^12.0.4",
"jsdom": "^19.0.0",
"svelte": "^3.44.0",
"svelte-check": "^2.2.7",
"svelte-preprocess": "^4.9.8",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"vite": "^2.9.9"
},
"dependencies": {
"@types/country-list": "^2.1.0",
"@types/jsdom": "^16.2.14",
"i18n-nationality": "^1.2.0"
}
}