-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"private": true,
"type": "module",
"main": "build/main.cjs",
"scripts": {
"cleanup": "rimraf build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --max-warnings 0 .",
"typecheck": "tsc --build",
"dev": "webpack watch --config-node-env=development",
"build": "webpack --config-node-env=production",
"build:analyze": "webpack watch --config-node-env=production",
"check-size-limits": "size-limit --highlight-less",
"start": "node --enable-source-maps ."
},
"packageManager": "pnpm@10.2.1",
"pnpm": {
"onlyBuiltDependencies": [
"bufferutil",
"utf-8-validate"
]
},
"dependencies": {
"@babel/runtime": "^7.7.4",
"body-parser": "^1.20.1",
"buffer": "^6.0.3",
"clsx": "^2.0.0",
"dotenv-flow": "^4.0.0",
"express": "^4.17.1",
"helmet": "^8.0.0",
"morgan": "^1.10.0",
"nocache": "^4.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.0.1",
"serialize-javascript": "^6.0.0",
"tiny-invariant": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.13.0",
"@faergeek/eslint-config": "^7.0.1",
"@faergeek/make-webpack-config": "^22.0.0",
"@size-limit/file": "^11.0.0",
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.3",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/serialize-javascript": "^5.0.2",
"browserslist": "^4.16.6",
"eslint": "^9.9.1",
"globals": "^15.14.0",
"nanoid": "^5.0.0",
"postcss": "^8.3.0",
"postcss-normalize": "^13.0.0",
"postcss-preset-env": "^10.0.0",
"prettier": "^3.0.0",
"rimraf": "^6.0.0",
"size-limit": "^11.0.0",
"typescript": "^5.0.0",
"webpack": "^5.64.3",
"webpack-cli": "^6.0.0"
}
}