-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 798 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 798 Bytes
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
{
"name": "loof-notes",
"packageManager": "yarn@3.4.1",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@types/koa": "^2.13.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"babel-loader": "^9.1.2",
"core-js": "^3.29.0",
"html-webpack-plugin": "^5.5.0",
"regenerator-runtime": "^0.13.11",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"dev": "webpack",
"build": "webpack --mode production --progress",
"tscheck": "tsc"
},
"dependencies": {
"koa": "^2.14.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}