-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.36 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
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
{
"name": "webpack-server",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "Vanessa Coles",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "NODE_OPTIONS='--import tsx' webpack serve --mode development",
"build": "NODE_OPTIONS='--import tsx' webpack --mode production",
"https-server": "dotenvx run -f .env -- tsx ./src/server/https-server.ts",
"lint": "npx eslint ./src",
"pg": "dotenvx run -f .env -- tsx ./src/pg/connect.ts",
"prettier": "npx prettier . --write",
"serve": "dotenvx run -f .env -- tsx src/server/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.51.1",
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.1",
"@eslint/json": "^0.14.0",
"@eslint/markdown": "^7.5.1",
"@mdx-js/loader": "^3.1.1",
"@swc/core": "^1.15.3",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^24.10.1",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/webpack": "^5.28.5",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"csv-loader": "^3.0.5",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"file-loader": "^6.2.0",
"globals": "^16.5.0",
"html-webpack-harddisk-plugin": "^2.0.0",
"html-webpack-plugin": "^5.6.5",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"mini-css-extract-plugin": "^2.9.4",
"nodemon": "^3.1.11",
"prettier": "3.7.4",
"style-loader": "^4.0.0",
"swc-loader": "^0.2.6",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0",
"webpack-cli": "^6.0.1",
"webpack-dev-middleware": "^7.4.5",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^6.0.1",
"workbox-webpack-plugin": "^7.4.0",
"xml-loader": "^1.2.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^5.2.1",
"pg": "^8.16.3",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"webpack": "^5.103.0"
}
}