-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.42 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
{
"name": "kitsuawards-client",
"version": "0.2.0",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"gql": "graphql-codegen --config codegen.yml",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"stylelint": "stylelint \"**/*.css\"",
"stylelint:fix": "stylelint --fix \"**/*.css\"",
"prettier": "prettier -c \"./src/**/*.{ts,tsx,css}\"",
"prettier:fix": "prettier -w \"./src/**/*.{ts,tsx,css}\"",
"fix": "npm run prettier:fix && npm run lint:fix && npm run stylelint:fix",
"typecheck": "tsc"
},
"dependencies": {
"@preact/signals": "^1.2.2",
"axios": "^1.2.2",
"graphql": "^16.6.0",
"preact": "^10.19.2",
"react-router-dom": "^6.6.1",
"urql": "^3.0.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.16.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/near-operation-file-preset": "^2.2.3",
"@graphql-codegen/typescript": "2.4.2",
"@graphql-codegen/typescript-document-nodes": "2.2.2",
"@graphql-codegen/typescript-graphql-files-modules": "2.1.1",
"@graphql-codegen/typescript-operations": "2.2.2",
"@graphql-codegen/typescript-urql": "^3.4.2",
"@graphql-codegen/urql-introspection": "2.1.1",
"@preact/preset-vite": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.54.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.33.2",
"postcss": "^8.4.31",
"postcss-nested": "^6.0.0",
"prettier": "^3.1.0",
"stylelint": "^14.16.1",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-declaration-strict-value": "^1.8.0",
"stylelint-high-performance-animation": "^1.6.0",
"stylelint-max-lines": "^0.1.0",
"stylelint-order": "^3.1.1",
"stylelint-use-logical-spec": "^3.2.2",
"stylelint-use-nesting": "^4.0.0",
"vite": "^5.0.2"
},
"volta": {
"node": "20.10.0"
}
}