-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
80 lines (80 loc) · 2.65 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "fullstack-typescript",
"version": "2.0.1",
"description": "",
"main": "index.js",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"clean-up-example-code": "node clean-up-example-code.js && rimraf clean-up-example-code.js",
"clean": "rimraf dist",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"start": "node index.js",
"start:prod": "cross-env NODE_ENV=production node index.js",
"type-check-client": "tsc -p ./src/client/tsconfig.json",
"build-client": "cross-env NODE_ENV=production vite build --config ./src/client/vite.config.ts",
"build-server": "tsc -b src/server && yarn fix-server-alias",
"dev-client": "vite --config ./src/client/vite.config.ts",
"fix-server-alias": "tsc-alias -p ./src/server/tsconfig.json",
"start-dev-server": "yarn fix-server-alias && yarn start",
"dev-server": "tsc-watch --noClear -b ./src/server/tsconfig.json --onSuccess \"yarn start-dev-server\"",
"dev": "concurrently --prefix \"[{name}]\" --names \"SERVER,CLIENT\" -c \"bgBlue.bold,bgGreen.bold\" \"npm run dev-server\" \"npm run dev-client\"",
"build": "yarn clean && concurrently --prefix \"[{name}]\" --names \"SERVER,CLIENT\" -c \"bgBlue.bold,bgGreen.bold\" \"npm run build-server\" \"npm run build-client\""
},
"keywords": [
"typescript",
"react",
"starter-kit",
"vite",
"fullstack",
"express",
"node"
],
"repository": {
"type": "git",
"url": "https://github.com/gilamran/fullstack-typescript.git"
},
"license": "MIT",
"author": "Gil Amran",
"dependencies": {
"axios": "^1.7.9",
"body-parser": "^1.20.3",
"ejs": "^3.1.10",
"express": "^4.21.2"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.3.1",
"@mui/material": "^6.3.1",
"@types/express": "^4.17.21",
"@types/node": "^22.10.5",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-react-compiler": "^19.0.0-beta-63e3235-20250105",
"concurrently": "^9.1.2",
"core-js": "^3.39.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-refresh": "^0.16.0",
"react-router": "^7.1.1",
"request": "^2.88.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsc-watch": "^6.2.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1",
"vite": "^6.0.7"
}
}