-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 2.56 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
{
"name": "transfermyti.me",
"version": "3.1.1",
"description": "Web app to transfer data between time tracking tools.",
"repository": "https://github.com/mikerourke/transfermyti.me.git",
"author": "Mike Rourke <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"prebuild": "rimraf ./out/build",
"build": "vite build",
"check:svelte": "svelte-check",
"check:types": "tsc -p tsconfig.json",
"check": "concurrently -n \"svelte,types\" -c \"cyan,yellow\" \"pnpm check:svelte\" \"pnpm check:types\"",
"clockify:delete": "node scripts/run.mjs clockify-delete",
"clockify:write": "node scripts/run.mjs clockify-write",
"lint:eslint": "eslint --cache --ext .js,.mjs,.ts,.svelte scripts src",
"lint:stylelint": "stylelint --cache src",
"lint": "concurrently -n \"eslint,stylelint\" -c \"cyan,yellow\" \"pnpm lint:eslint\" \"pnpm lint:stylelint\"",
"prettier": "prettier --cache --write \"{src,scripts}/**/**.{css,html,json,cjs,js,mjs,ts,svelte}\" index.html",
"start:server": "node scripts/run.mjs serve",
"start:web": "vite --port 8080",
"vitest": "vitest"
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"clsx": "^2.1.0",
"date-fns": "^3.2.0",
"ramda": "^0.29.1",
"redux-saga": "^1.3.0"
},
"devDependencies": {
"@redux-saga/is": "^1.1.3",
"@redux-saga/symbols": "^1.1.3",
"@ronilaukkarinen/stylelint-a11y": "^1.2.9",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@types/node": "20.11.3",
"@types/ramda": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/coverage-istanbul": "^1.2.0",
"body-parser": "^1.20.2",
"concurrently": "^8.2.2",
"csstype": "^3.1.3",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-svelte": "^2.35.1",
"eslint-plugin-unicorn": "^50.0.1",
"express": "^4.18.2",
"jsdom": "^23.2.0",
"listr2": "^8.0.1",
"morgan": "^1.10.0",
"postcss": "^8.4.33",
"postcss-html": "^1.6.0",
"postcss-nesting": "^12.0.2",
"prettier": "^3.2.2",
"prettier-plugin-svelte": "^3.1.2",
"redux-saga-test-plan": "^4.0.6",
"rimraf": "^5.0.5",
"stylelint": "15.11.0",
"stylelint-config-standard": "34.0.0",
"svelte": "^4.2.8",
"svelte-check": "^3.6.3",
"svelte-preprocess": "^5.1.3",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.2.0",
"vitest-dom": "^0.1.1",
"yargs": "^17.7.2"
}
}