-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·108 lines (108 loc) · 3.9 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
{
"name": "ignitionapp-toolbelt",
"version": "0.4.4",
"description": "Streamlines Ignitioneers' daily operations",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ignitionapp/ignitionapp-toolbelt"
},
"scripts": {
"build": "node utils/build.js",
"dist": "NODE_ENV=production yarn build",
"start": "node utils/webserver.js",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"graphql:get-schema": "get-graphql-schema http://localhost:3000/auth-api/graphql > graphql/schemas/auth_api.graphql; get-graphql-schema http://localhost:3000/dev_api/graphql > graphql/schemas/dev_api.graphql; get-graphql-schema http://localhost:3000/graphql > graphql/schemas/ignition.graphql --header 'Authorization=Bearer ${AUTH_TOKEN}'",
"graphql:codegen": "graphql-codegen",
"graphql:coverage": "graphql coverage",
"graphql:validate": "graphql validate"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@faker-js/faker": "^8.4.1",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hot-loader/react-dom": "^17.0.2",
"@mlc-ai/web-llm": "^0.2.60",
"arrive": "^2.4.1",
"debounce": "^2.0.0",
"fetch-intercept": "^2.4.0",
"framer-motion": "^6",
"graphql": "^16.7.1",
"graphql-request": "5.1.0",
"openai": "^4.52.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-hot-loader": "^4.13.0",
"react-markdown": "^9.0.1",
"react-select": "^5.8.0",
"remark-gfm": "^4.0.0",
"whatwg-fetch": "^3.6.20",
"zustand": "^4.5.5"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@graphql-cli/codegen": "3.0.4",
"@graphql-cli/coverage": "2.1.0",
"@graphql-cli/validate": "2.1.0",
"@graphql-codegen/add": "^5.0.2",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/import-types-preset": "^3.0.0",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typescript": "^4.0.4",
"@graphql-codegen/typescript-operations": "^4.1.2",
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
"@graphql-codegen/typescript-resolvers": "^4.0.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/chrome": "^0.0.202",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"babel-plugin-module-resolver": "^5.0.0",
"babel-preset-react-app": "^10.0.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.31.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"fs-extra": "^11.1.0",
"get-graphql-schema": "^2.1.2",
"graphql-cli": "^4.1.0",
"graphql-tag": "^2.12.6",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.8.3",
"raw-loader": "^4.0.2",
"react-refresh": "^0.14.0",
"react-refresh-typescript": "^2.0.7",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"type-fest": "^3.5.2",
"typescript": "^4.9.4",
"typescript-graphql-request": "^4.4.6",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"zip-webpack-plugin": "^4.0.1"
}
}