-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.14 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
{
"name": "kittenlocks",
"version": "0.1.0",
"description": "a pawtastic WebApp to enchance your Chaster experience",
"scripts": {
"start": "NODE_ENV=development webpack serve",
"build": "webpack",
"build:dev": "NODE_ENV=development webpack",
"build:prod": "NODE_ENV=production webpack",
"serve": "NODE_ENV=production webpack && npx http-server -c-1 --proxy=http://127.0.0.1:8080?",
"stats": "NODE_ENV=production webpack --profile --json > schema/stats.json && npx webpack-bundle-analyzer schema/stats.json public",
"lint": "eslint . --ext .js,.jsx --ignore-path=.gitignore",
"api": "cd schema && curl https://api.chaster.app/api-json > api.json && npx @openapitools/openapi-generator-cli generate -i api.json -g graphql-schema --global-property skipFormModel=false"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KittenApps/KittenLocks.git"
},
"author": {
"name": "Silizia",
"url": "https://github.com/KittenApps"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/KittenApps/KittenLocks/issues"
},
"browserslist": [
">1%",
"not dead",
"not ie 11",
"not op_mini all"
],
"homepage": "https://github.com/KittenApps/KittenLocks#readme",
"dependencies": {
"@apollo/client": "^3.11.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fontsource/roboto": "^5.1.0",
"@mui/icons-material": "^5.16.7",
"@mui/lab": "^5.0.0-alpha.173",
"@mui/material": "^5.16.7",
"@sentry/react": "^7.119.0",
"@sentry/webpack-plugin": "^2.22.4",
"@silizia/react-viewer": "^4.2.1",
"@textea/json-viewer": "^3.5.0",
"apollo-link-rest": "^0.9.0",
"apollo3-cache-persist": "^0.15.0",
"autosuggest-highlight": "^3.3.4",
"babel-loader": "^9.2.1",
"babel-plugin-direct-import": "^1.0.0",
"babel-plugin-import-graphql": "^2.8.1",
"css-loader": "^6.11.0",
"favicons": "^7.2.0",
"favicons-webpack-plugin": "^6.0.1",
"graphql": "^16.9.0",
"graphql-config": "^5.1.2",
"highcharts": "^11.4.8",
"highcharts-react-official": "^3.2.1",
"html-webpack-plugin": "^5.6.0",
"localforage": "^1.10.0",
"lodash.throttle": "^4.1.1",
"notistack": "^3.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"react-scroll": "^1.9.0",
"react-virtuoso": "^4.10.4",
"realm-web": "^2.0.1",
"style-loader": "^3.3.4",
"victory": "^37.1.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"workbox-webpack-plugin": "^7.1.0"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.20.1",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sonarjs": "^0.24.0",
"eslint-plugin-unicorn": "^51.0.1",
"webpack-dev-server": "^5.1.0"
},
"overrides": {
"@graphql-eslint/eslint-plugin": {
"graphql-config": "$graphql-config"
}
}
}