-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.3 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.3 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
{
"name": "chat-example",
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "yarn lint && yarn typecheck && yarn webpack",
"typecheck": "tsc",
"lint": "eslint ./src --fix",
"start": "webpack serve --open",
"generate-types": "flowdb generate-types --local -m src/backend/index.ts --output src/generated-types.ts"
},
"dependencies": {
"@eslint/js": "^9.1.1",
"@flowdb/api": "0.3.0",
"@flowdb/cli": "0.3.0",
"@flowdb/react": "0.3.0",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/webpack": "^5.28.5",
"eslint": "^9.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"html-webpack-plugin": "^5.6.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.23.1",
"styled-components": "^6.1.8",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}