-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.62 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.62 KB
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
{
"name": "svelte-practice",
"version": "0.0.1",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"preview": "svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"test": "jest --watch"
},
"devDependencies": {
"@sveltejs/kit": "next",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/svelte": "^3.0.3",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"autoprefixer": "^10.4.0",
"cssnano": "^5.0.12",
"eslint": "^8",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-functional": "^4.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jest-async": "^1.0.3",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-only-error": "^1.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-svelte3": "^3.2.1",
"expect-playwright": "^0.8.0",
"jest": "^27.4.4",
"jest-circus": "^27.4.4",
"jest-dev-server": "^6.0.2",
"jest-environment-node": "^27.4.4",
"jest-extended": "^1.2.0",
"jest-playwright-preset": "^1.7.0",
"jest-runner": "^27.4.4",
"jest-watch-continue": "^1.1.4",
"jest-watch-random": "^1.0.2",
"jest-watch-repeat": "^2.0.0",
"jest-watch-suspend": "^1.1.2",
"jest-watch-typeahead": "^1.0.0",
"playwright": "^1.17.1",
"postcss": "^8.4.5",
"postcss-load-config": "^3.1.0",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.1",
"ramda": "^0.27.1",
"svelte": "^3.44.2",
"svelte-check": "^2.2.10",
"svelte-jester": "^2.1.5",
"svelte-preprocess": "^4.9.8",
"tailwindcss": "^3.0.1",
"ts-jest": "^27.1.1",
"tslib": "^2.3.1",
"tsutils": "^3.21.0",
"typescript": "^4.5.3"
},
"type": "module"
}