-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.99 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
{
"name": "gh-action-stats",
"version": "0.1.4-beta",
"description": "Platform to get analytics from your GitHub Actions",
"homepage": "https://actions.boringday.co/",
"repository": {
"type": "git",
"url": "https://github.com/michmich112/gh-action-stats.git"
},
"private": true,
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public --no-clear",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "TZ=America/Los_Angeles jest",
"format": "prettier --write ./src/**/*.{js,svelte,html,ts}",
"lint": "eslint src --ext .js,.svelte,.html,.ts",
"lint:fix": "eslint --fix src --ext .js,.svelte"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.5.0",
"@tsconfig/svelte": "^2.0.1",
"@types/firebase": "^3.2.1",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-plugin-svelte3": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.8.1",
"rollup": "^2.79.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.53.1",
"svelte-check": "^2.9.2",
"svelte-preprocess": "^4.10.7",
"ts-jest": "^27.1.5",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@michmich112/svelte-ag-grid": "^1.1.1",
"@michmich112/svelte-chartjs": "^1.1.1",
"@types/axios": "^0.14.0",
"axios": "^0.24.0",
"firebase": "^9.14.0",
"sirv-cli": "^1.0.14",
"svelte-routing": "^1.6.0",
"svelte-simple-modal": "^1.4.5"
},
"jest": {
"verbose": true,
"rootDir": "src",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
]
}
}