-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 3.19 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 3.19 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
{
"name": "react-with-tailwind-spa-blueprint",
"version": "0.0.4",
"description": "Implementation of React single page application with Tailwind",
"main": "index.js",
"author": "https://github.com/theManAndHisShadow",
"license": "MIT",
"devDependencies": {
"@types/express": "^5.0.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/react-helmet": "^6.1.11",
"@types/react-redux": "^7.1.34",
"@types/redux": "^3.6.31",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"css-loader": "^7.1.2",
"dotenv": "^17.2.3",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.1.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-unused-imports": "^4.2.0",
"express": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"path-to-regexp": "^6.2.1",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"prettier": "^3.6.2",
"prettier-plugin-classnames": "^0.8.4",
"prettier-plugin-jsdoc": "^1.3.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-helmet": "^6.1.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.6.3",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.18",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"clean:frontend": "rimraf build/frontend",
"clean:backend": "rimraf build/backend",
"clean": "rimraf build",
"prettier": "prettier --config .prettierrc.json \"src/**/*.{ts,tsx}\" --check",
"prettier-format": "prettier --config .prettierrc.json \"src/**/*.{ts,tsx}\" --write",
"eslint": "eslint \"src/**/*.{ts,tsx}\" --ext .ts,.tsx",
"lint": "npm run prettier-format && npm run eslint",
"build:frontend": "npm run clean:frontend && webpack --config webpack.frontend.config.js --env development",
"build:backend": "npm run clean:backend && webpack --config webpack.backend.config.js --env development",
"build": "npm run lint && npm run build:frontend && npm run build:backend",
"build:frontend:prod": "npm run clean:frontend && webpack --config webpack.frontend.config.js --env production",
"build:backend:prod": "npm run clean:backend && webpack --config webpack.backend.config.js --env production",
"build:prod": "npm run lint && npm run build:frontend:prod && npm run build:backend:prod",
"update-version": "node scripts/version_updater.js",
"build:release": "npm run build:prod && npm run update-version",
"server": "webpack serve build/backend/js/backend.bundle.js",
"start:server": "node build/backend/js/backend.bundle.js",
"start:frontend": "webpack serve --config webpack.frontend.config.js --env development",
"app": "concurrently \"npm run start:server\" \"npm run start:frontend\""
}
}