-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.06 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
{
"name": "schemats",
"version": "0.1.0",
"description": "Frontend Client for Tabroom.com",
"private": true,
"keywords": [
"speech",
"schemats",
"debate",
"congress",
"tabulation",
"forensics",
"tabroom",
"speechanddebate",
"NSDA"
],
"author": "Chris Palmer",
"license": "RPL 1.5",
"bugs": {
"url": "https://github.com/speechanddebate/tabroom/issues"
},
"scripts": {
"production" : "vite build --mode production && node -r dotenv/config build/index.js",
"staging" : "vite build --mode staging",
"build" : "vite build --mode production",
"dev" : "vite dev",
"preview" : "vite preview",
"check" : "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test" : "vitest",
"lint" : "eslint .",
"prepare" : "husky"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@types/tabulator-tables": "^6.2.3",
"eslint": "^8.28.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-svelte": "^2.45.1",
"husky": "^9.0.11",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tslib": "^2.4.1"
},
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@speechanddebate/eslint-config-nsda": "^1.0.25",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-node": "^5.2.10",
"@sveltejs/kit": "^2.5.27",
"dotenv": "^16.3.1",
"tabulator-tables": "^6.3.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.0",
"vite": "^5.4.4",
"vitest": "^1.0.0"
},
"eslintConfig": {
"extends": [
"@speechanddebate/eslint-config-nsda",
"@speechanddebate/eslint-config-nsda/tabroom"
],
"overrides": [
{
"files": [
"**/*.test.js"
],
"extends": [
"@speechanddebate/eslint-config-nsda",
"@speechanddebate/eslint-config-nsda/tabroom"
]
}
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
}
}
}