aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 84e1c1ea57841a520c79d109cb7f0349763731a9 (plain) (blame)
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
90
91
92
93
94
95
{
  "name": "juick",
  "private": true,
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "watch": "webpack --watch --mode development",
    "compile": "webpack --mode production",
    "lint": "eslint src/main/assets",
    "vnext:test": "jest",
    "vnext:build": "webpack -c vnext/webpack.config.js --mode production --progress",
    "vnext:build:ssr": "npm run vnext:build && webpack -c vnext/server/webpack.config.js --mode production",
    "vnext:start-ssr": "npm run vnext:build:ssr && cross-env DEBUG=http node --enable-source-maps public/server.js",
    "vnext:start": "webpack serve -c vnext/webpack.config.js --mode development",
    "vnext:lint": "eslint vnext",
    "bridge:build": "webpack -c bridge/webpack.config.js --mode production"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/juick/juick.git"
  },
  "license": "AGPL-3.0-or-later",
  "devDependencies": {
    "@babel/core": "^7.24.4",
    "@babel/eslint-parser": "^7.24.1",
    "@babel/preset-env": "^7.24.4",
    "@babel/preset-react": "^7.24.1",
    "@swc/core": "^1.4.16",
    "@swc/jest": "^0.2.36",
    "@testing-library/jest-dom": "^6.4.2",
    "@testing-library/react": "^15.0.2",
    "autoprefixer": "^10.4.19",
    "babel-loader": "^9.1.3",
    "core-js": "^3.37.0",
    "cors": "^2.8.5",
    "cross-env": "^7.0.3",
    "css-loader": "^7.1.1",
    "cssnano": "^6.1.2",
    "eslint": "8.57.0",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-jest": "^28.2.0",
    "eslint-plugin-jest-dom": "^5.4.0",
    "eslint-plugin-jsdoc": "^48.2.3",
    "eslint-plugin-only-ascii": "0.0.0",
    "eslint-plugin-promise": "^6.1.1",
    "eslint-plugin-react": "^7.34.1",
    "eslint-plugin-react-hooks": "^4.6.0",
    "eslint-plugin-testing-library": "^6.2.2",
    "eslint-webpack-plugin": "^4.1.0",
    "html-webpack-plugin": "^5.6.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "mini-css-extract-plugin": "^2.9.0",
    "postcss": "^8.4.38",
    "postcss-cli": "^11.0.0",
    "postcss-import": "^16.1.0",
    "postcss-loader": "^8.1.1",
    "postcss-preset-env": "^9.5.9",
    "postcss-url": "^10.1.3",
    "react-test-renderer": "^18.2.0",
    "regenerator-runtime": "^0.14.1",
    "style-loader": "^4.0.0",
    "stylelint": "^16.3.1",
    "stylelint-config-standard": "^36.0.0",
    "webpack": "^5.91.0",
    "webpack-cli": "^5.1.4",
    "webpack-dev-server": "^5.0.4"
  },
  "dependencies": {
    "axios": "^1.6.8",
    "axios-cache-interceptor": "^1.5.1",
    "body-parser": "^1.20.2",
    "classlist.js": "^1.1.20150312",
    "config": "^3.3.11",
    "css-minimizer-webpack-plugin": "^6.0.0",
    "dayjs": "^1.11.10",
    "element-closest": "3.0.2",
    "evil-icons": "^1.10.1",
    "express": "^4.19.2",
    "formdata-polyfill": "^4.0.10",
    "mailparser": "^3.7.0",
    "node-pushnotifications": "^3.0.0",
    "node-telegram-bot-api": "^0.65.1",
    "react": "^18.2.0",
    "react-content-loader": "^7.0.0",
    "react-dom": "^18.2.0",
    "react-helmet-async": "^2.0.4",
    "react-hook-form": "^7.51.3",
    "react-hot-toast": "^2.4.1",
    "react-router-dom": "^6.22.3",
    "svg4everybody": "^2.1.9",
    "url-polyfill": "^1.1.12",
    "whatwg-fetch": "^3.6.20",
    "xml2js": "^0.6.2"
  }
}