-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.96 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
{
"name": "bill-of-open-materials",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --port 8000 --force",
"build": "tsc && vite build",
"preview": "vite preview",
"codegen": "graphql-codegen --config codegen.yaml",
"lint": "eslint src/**/*.{tsx,ts}",
"lint:fix": "eslint --fix src/**/*.{tsx,ts}",
"format": "prettier --check \"**/*.{ts,tsx}\"",
"format:fix": "prettier --write \"**/*.{ts,tsx}\"",
"tsc": "tsc --noEmit",
"check": "npm run format && npm run lint && npm run tsc",
"fix": "npm run lint:fix && npm run format:fix"
},
"dependencies": {
"@fontsource/outfit": "^5.0.8",
"@mantine/core": "^7.13.0",
"@mantine/hooks": "^7.13.0",
"@speckle/objectloader": "^2.21.0",
"@tabler/icons-react": "^3.19.0",
"export-to-csv": "^1.4.0",
"mantine-react-table": "2.0.0-beta.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@apollo/client": "^3.11.8",
"@eslint/js": "^9.12.0",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typescript-operations": "^4.2.3",
"@graphql-codegen/typescript-react-apollo": "^4.3.2",
"@graphql-codegen/typescript-resolvers": "^4.2.1",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"apollo-link-rest": "^0.9.0",
"eslint": "^9.12.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.9.0",
"postcss": "^8.4.47",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^5.0.1"
}
}