-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.03 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
{
"name": "counter-app-web",
"version": "1.0.0",
"description": "Counter App for the web",
"private": true,
"scripts": {
"start": "sirv public --no-clear",
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.svelte src",
"format": "prettier --write --ignore-path .gitignore --plugin-search-dir=. **/*.{ts,svelte,js,json}",
"check": "svelte-check",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philskat/counter-app-web.git"
},
"author": "philskat",
"license": "MIT",
"bugs": {
"url": "https://github.com/philskat/counter-app-web/issues"
},
"homepage": "https://github.com/philskat/counter-app-web#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^10.0.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/svelte": "^3.0.3",
"@tsconfig/svelte": "^2.0.1",
"@types/jest": "^27.4.1",
"@types/node": "^15.14.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"autoprefixer": "^9.8.8",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-svelte3": "^3.2.1",
"jest": "^27.5.1",
"postcss": "^7.0.36",
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.6.0",
"rollup": "^2.79.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-workbox": "^6.1.1",
"svelte": "^3.46.4",
"svelte-check": "^3.0.1",
"svelte-jester": "^2.1.5",
"svelte-preprocess": "^5.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.2",
"ts-jest": "^27.0.4",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"sirv-cli": "^1.0.14"
}
}