-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·89 lines (89 loc) · 3.21 KB
/
package.json
File metadata and controls
executable file
·89 lines (89 loc) · 3.21 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
81
82
83
84
85
86
87
88
89
{
"name": "boring_activities",
"version": "1.5.0",
"main": "src/index.ts",
"private": true,
"scripts": {
"clean": "rimraf ./dist",
"build": "deno fmt && deno task build:frontend",
"build:frontend": "webpack build --config webpack.config.js --mode production",
"build:frontend:dev": "webpack-dev-server --config webpack.config.dev.js --mode development",
"build:analyze": "webpack build --config webpack.config.js --mode development && webpack-bundle-analyzer dist/public/stats.json",
"dev": "deno run --allow-all ./node_modules/.bin/concurrently --kill-others \"deno --allow-all --watch src/index.ts\" \"deno task build:frontend:dev\"",
"start": "deno task build:frontend && deno --allow-all src/index.ts",
"lint": "eslint .",
"prepare": "husky",
"release": "standard-version -s -a",
"release:minor": "standard-version -s -a --release-as minor",
"release:patch": "standard-version -s -a --release-as patch",
"release:major": "standard-version -s -a --release-as major"
},
"author": "Andrea",
"license": "ISC",
"description": "A sample rest API for todo apps",
"dependencies": {
"@floating-ui/react-dom": "^2.1.8",
"@tanstack/react-query": "^5.95.2",
"@uidotdev/usehooks": "^2.4.1",
"classnames": "^2.5.1",
"compression": "^1.8.1",
"cors": "^2.8.6",
"express": "^4.22.1",
"express-rate-limit": "^7.5.1",
"helmet": "^8.1.0",
"highlight.js": "^11.11.1",
"lodash-es": "^4.17.23",
"morgan": "^1.10.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-scan": "^0.2.14",
"ulid": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.29.2",
"@babel/preset-flow": "^7.27.1",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint-react/eslint-plugin": "^1.53.1",
"@eslint/js": "^9.39.4",
"@types/express": "^4.17.25",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.19.15",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"babel-loader": "^9.2.1",
"babel-plugin-react-compiler": "^19.0.0-beta-ebf51a3-20250411",
"concurrently": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^7.0.4",
"eslint": "^9.39.4",
"eslint-plugin-react-compiler": "^19.0.0-beta-ebf51a3-20250411",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"html-webpack-plugin": "^5.6.6",
"husky": "^9.1.7",
"mini-css-extract-plugin": "^2.10.1",
"postcss": "^8.5.8",
"postcss-import": "^16.1.1",
"postcss-loader": "^8.2.1",
"postcss-preset-env": "^10.6.1",
"rimraf": "^6.1.3",
"standard-version": "^9.5.0",
"style-loader": "^4.0.0",
"svg-inline-loader": "^0.8.2",
"tailwindcss": "^3.4.19",
"terser-webpack-plugin": "^5.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"webpack": "^5.105.4",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.3",
"webpack-merge": "^6.0.1"
}
}