-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.98 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "solid-todo-app-ts",
"version": "0.1.0",
"description": "",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint:src": "eslint 'src/**/*.{ts,tsx}' --ignore-pattern 'src/**/*.test.ts' --ignore-pattern 'src/**/*.test.tsx' --quiet",
"lint:vitest": "eslint 'src/**/*.test.{ts,tsx}' --quiet",
"lint": "pnpm run lint:src && pnpm run lint:vitest",
"lint:fix": "pnpm run lint:src --fix && pnpm run lint:vitest --fix",
"pretest": "npx tailwindcss -i ./src/index.css -o ./src/generated/output.css",
"pretest:related": "npx tailwindcss -i ./src/index.css -o ./src/generated/output.css",
"test": "vitest",
"test:related": "vitest related ./src/**/*.{ts,tsx} --run --passWithNoTests",
"posttest": "rm ./src/generated/output.css",
"posttest:related": "rm ./src/generated/output.css",
"prettier": "prettier --check src",
"prepare": "husky install",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"graphql:codegen": "graphql-codegen --config .graphqlrc.yml",
"postinstall": "patch-package"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/typescript": "^2.4.11",
"@graphql-codegen/typescript-msw": "^1.0.10",
"@graphql-codegen/typescript-operations": "^2.4.0",
"@milahu/patch-package": "^6.4.14",
"@tailwindcss/line-clamp": "^0.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@types/babel__core": "^7.1.19",
"@types/headroom.js": "^0.12.2",
"@types/masonry-layout": "^4.2.5",
"@types/scroll-lock": "^2.1.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"autoprefixer": "^10.4.7",
"babel-core": "^6.26.3",
"babel-jest": "^29.1.2",
"babel-preset-jest": "^29.0.2",
"babel-preset-solid": "^1.5.7",
"babel-preset-vite": "^1.0.4",
"cssnano": "^5.1.12",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-solid": "^0.11.0",
"eslint-plugin-testing-library": "^5.5.1",
"gh-pages": "^4.0.0",
"graphql": "^16.5.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.0",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"regenerator-runtime": "^0.13.9",
"solid-testing-library": "^0.5.0",
"tailwindcss": "^3.0.24",
"tsc-files": "^1.1.3",
"typescript": "^4.8.4",
"vite": "4.1.4",
"vite-plugin-solid": "2.6.1",
"vitest": "0.22.1",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"@motionone/solid": "^10.10.2",
"@solid-primitives/intersection-observer": "^2.0.0",
"@solid-primitives/media": "^2.0.0",
"@solid-primitives/mutation-observer": "^1.1.0",
"@solid-primitives/storage": "^1.3.1",
"@solidjs/router": "^0.8.0",
"@tanstack/solid-query": "^4.9.0",
"dialog-polyfill": "^0.5.6",
"headroom.js": "^0.12.0",
"masonry-layout": "^4.2.2",
"msw": "^0.47.3",
"scroll-lock": "^2.1.5",
"solid-icons": "^1.0.1",
"solid-js": "^1.5.7",
"solid-js-form": "0.1.5",
"solid-toast": "^0.4.0",
"tinygesture": "^2.0.0",
"yup": "^0.32.11"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"graphql": "16"
}
}
},
"packageManager": "[email protected]",
"msw": {
"workerDirectory": "public"
}
}