-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2 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
{
"name": "svelte-formify",
"version": "1.1.16",
"types": "index.d.ts",
"keywords": [
"svelte",
"svelte-forms",
"svelte validation"
],
"repository": "https://github.com/nodify-at/svelte-formify",
"author": {
"name": "Hasan Oezdemir",
"url": "https://github.com/nodify-at"
},
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"package": "svelte-kit package",
"preview": "svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint --ignore-path .gitignore .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest src --config jest.config.json --coverage",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@changesets/cli": "^2.22.0",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/svelte": "^3.1.1",
"@types/jest": "^27.4.1",
"@types/testing-library__jest-dom": "^5.14.3",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-jest": "^27.5.1",
"eslint": "^8.13.0",
"eslint-plugin-svelte3": "^3.4.1",
"jest": "^27.5.1",
"rollup-plugin-svelte": "^7.1.0",
"svelte": "^3.49.0",
"svelte-check": "^2.6.0",
"svelte-jester": "^2.3.2",
"svelte-preprocess": "^4.10.5",
"svelte2tsx": "^0.5.8",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"yup": "^0.32.11"
},
"peerDependencies": {
"svelte": "^3.49.0",
"yup": "^0.32.11"
},
"type": "module",
"dependencies": {
"@abraham/reflection": "^0.10.0"
}
}