-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.19 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
{
"name": "react-base-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"initialize:type": "mkdir -p generated/ && test -f ./generated/types.ts && true || cp types.stub.ts ./generated/types.ts",
"prestart": "yarn initialize:type",
"prelint:js": "yarn initialize:type",
"prelint:unused": "yarn initialize:type",
"prebuild": "yarn initialize:type",
"start": "vite",
"build": "vite build",
"generate": "graphql-codegen --config codegen.yml && eslint --fix generated/types.ts",
"typecheck": "tsc",
"lint:js": "eslint src",
"lint:css": "stylelint ./src/**/*.css",
"lint:unused": "unimported",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"postinstall": "patch-package"
},
"dependencies": {
"@apollo/client": "^3.7.15",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@hcaptcha/react-hcaptcha": "^1.8.1",
"@the-deep/deep-ui": "^2.0.3",
"@togglecorp/fujs": "^2.0.0",
"@togglecorp/toggle-form": "^2.0.3",
"apollo-link": "^1.2.14",
"apollo-link-retry": "^2.2.16",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-router-dom": "^6.11.1"
},
"devDependencies": {
"@eslint/eslintrc": "^2.0.3",
"@graphql-codegen/cli": "^2.16.4",
"@graphql-codegen/introspection": "^2.2.3",
"@graphql-codegen/typescript-operations": "^2.5.12",
"@julr/vite-plugin-validate-env": "^0.2.2",
"@types/node": "^20.1.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"happy-dom": "^9.18.3",
"patch-package": "^7.0.0",
"postcss": "^8.3.0",
"postcss-nested": "^6.0.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^8.3.2",
"postinstall-postinstall": "^2.1.0",
"stylelint": "^15.6.1",
"stylelint-config-concentric": "^2.0.2",
"stylelint-config-recommended": "^12.0.0",
"stylelint-no-unused-selectors": "git+https://github.com/toggle-corp/stylelint-no-unused-selectors#e0831e1",
"stylelint-value-no-unknown-custom-properties": "^4.0.0",
"typescript": "^5.0.4",
"unimported": "^1.28.0",
"vite": "^4.3.2",
"vite-plugin-checker": "^0.6.0",
"vite-plugin-compression2": "^0.9.1",
"vite-plugin-webfont-dl": "^3.7.6",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.31.0"
}
}