This repository has been archived by the owner on Feb 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.67 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "projektwahl-sveltekit",
"version": "0.0.1",
"license": "AGPL-3.0-or-later",
"author": {
"name": "Moritz Hedtke",
"email": "Moritz.Hedtke@t-online.de"
},
"bugs": {
"url": "https://github.com/mohe2015/projektwahl-sveltekit/issues"
},
"homepage": "https://github.com/mohe2015/projektwahl-sveltekit",
"repository": {
"type": "git",
"url": "https://github.com/mohe2015/projektwahl-sveltekit.git"
},
"description": "Software to manage choosing projects and assigning people to projects.",
"scripts": {
"dev": "NODE_OPTIONS=--enable-source-maps svelte-kit dev",
"build": "svelte-kit build",
"preview": "NODE_OPTIONS=--enable-source-maps svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --write --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"prepare": "husky install",
"test": "NODE_OPTIONS=--experimental-vm-modules jest src",
"update-snapshot": "NODE_OPTIONS=--experimental-vm-modules jest --updateSnapshot",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@sveltejs/adapter-node": "next",
"@sveltejs/kit": "next",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/svelte": "^3.0.3",
"@types/bootstrap": "^5.1.6",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-svelte3": "^3.2.1",
"husky": "^7.0.2",
"jest": "^27.2.5",
"lint-staged": "^11.2.3",
"prettier": "~2.4.1",
"prettier-plugin-svelte": "^2.4.0",
"svelte": "^3.43.2",
"svelte-check": "^2.2.7",
"svelte-jester": "^2.1.5",
"svelte-preprocess": "^4.9.8",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"type": "module",
"dependencies": {
"argon2": "^0.28.2",
"bootstrap": "^5.1.3",
"csv-parse": "^4.16.3",
"dotenv": "^10.0.0",
"json5": "^2.2.0",
"node-fetch": "^3.0.0",
"openid-client": "^4.9.0",
"postgres": "mohe2015/postgres#patch-1",
"sveltestrap": "^5.6.3"
},
"lint-staged": {
"*.{ts,svelte}": "eslint --cache --fix",
"*.{ts,svelte,css,md}": "prettier --write"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(node-fetch)/)"
],
"transform": {
"^.+\\.svelte$": "svelte-jester",
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"svelte",
"ts"
],
"extensionsToTreatAsEsm": [
".ts",
".svelte"
],
"globals": {
"ts-jest": {
"useESM": true
}
}
}
}