-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.15 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
{
"name": "sarafun",
"version": "1.0.0",
"main": "index.js",
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint . --fix",
"start": "npm run build && node server/server.mjs",
"dev": "webpack && webpack serve --mode development",
"build": "webpack --mode production"
},
"keywords": [],
"author": "sarafun",
"license": "ISC",
"description": "dating app",
"dependencies": {
"assert": "^2.1.0",
"buffer": "^6.0.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.0",
"express-history-api-fallback": "^2.2.1",
"express-session": "^1.18.0",
"https-browserify": "^1.0.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"util": "^0.12.5",
"yookassa": "^0.1.1",
"yookassa-ts": "^0.1.14"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.11.1",
"@types/pug": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"babel-loader": "^9.2.1",
"compression-webpack-plugin": "^11.1.0",
"copy-webpack-plugin": "^12.0.2",
"crypto-browserify": "^3.12.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.16.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-pug": "^1.2.5",
"file-loader": "^6.2.0",
"globals": "^15.10.0",
"html-webpack-plugin": "^5.6.3",
"image-webpack-loader": "^8.1.0",
"mini-css-extract-plugin": "^2.9.2",
"os-browserify": "^0.3.0",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"sass": "^1.80.5",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"url-loader": "^4.1.1",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"zstd-codec": "^0.1.5"
}
}