-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "sample-monorepo",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf -g \"./packages/*/dist\"",
"build": "tsc --build",
"lint": "eslint",
"pretest": "npm run lint && npm run build",
"test": "npm run test:only",
"test:only": "node --test --enable-source-maps",
"start": "npm run start:client",
"start:client": "npm run -w @sample/app start",
"prestart:server": "npm run -w @sample/app bundle:prod",
"start:server": "npm run -w @sample/server start",
"prettify": "prettier . --write"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"@types/node": "22",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"html-webpack-plugin": "^5.6.3",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"source-map-loader": "^5.0.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.13.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"engines": {
"node": ">=22",
"npm": ">=8"
},
"license": "MIT",
"private": true
}