-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.55 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.55 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "faucet",
"type": "module",
"version": "1.0.1",
"description": "Steemit Register Program",
"main": "./bin/www",
"scripts": {
"start": "./bin/www",
"start-dev": "nodemon --ignore public/ ./bin/www | pino-pretty",
"jest": "env $(grep -v '^#' .env.example | grep -v '^$' | tr \"\\\\n\" \" \") NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint",
"lint-fix": "eslint --fix",
"test": "pnpm run lint && pnpm run jest",
"test:smtp": "node test-smtp-config.js",
"build": "webpack --config webpack/webpack.prod.config.js",
"build-dev": "webpack --progress --config webpack/webpack.config.js",
"precommit": "lint-staged",
"db:migrate": "env $(tr \"\\\\n\" \" \" < .env) sequelize-cli db:migrate --config db/config/config.json --migrations-path db/migrations --seeders-path db/seeders --models-path db/models"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steemit/faucet.git"
},
"keywords": [
"steem"
],
"author": "ety001",
"license": "MIT",
"bugs": {
"url": "https://github.com/steemit/faucet/issues"
},
"homepage": "https://github.com/steemit/faucet#readme",
"devDependencies": {
"@ant-design/colors": "^7.1.0",
"@ant-design/compatible": "^5.1.3",
"@ant-design/icons": "^5.5.1",
"@babel/core": "^7.24.9",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-proposal-json-modules": "^7.25.4",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@eslint/js": "^9.7.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"antd": "^5.21.1",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.9.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"js-cookie": "^3.0.5",
"jspdf": "^2.5.2",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lint-staged": "^15.2.7",
"mini-css-extract-plugin": "^2.9.0",
"nodemon": "^3.1.4",
"pino-pretty": "^11.2.1",
"prettier": "^3.3.3",
"qrious": "^4.0.2",
"react": "^18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.1",
"react-intl": "^6.6.8",
"react-redux": "^9.1.2",
"react-refresh": "^0.14.2",
"react-router-dom": "^6.26.1",
"redux": "^5.0.1",
"redux-saga": "^1.3.0",
"sequelize-cli": "^6.6.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.3.0",
"webpack-hot-middleware": "^2.26.1",
"webpack-manifest-plugin": "^5.0.0"
},
"dependencies": {
"@babel/runtime": "^7.25.0",
"@marsidev/react-turnstile": "^1.0.2",
"@reduxjs/toolkit": "^2.2.7",
"@steemit/steem-js": "^1.0.11",
"nodemailer": "^6.9.8",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"hbs": "^4.2.0",
"immutable": "^4.3.7",
"jsonwebtoken": "^9.0.2",
"maxmind": "1",
"moment": "^2.30.1",
"mysql2": "^3.11.0",
"pino": "^9.3.1",
"react-phone-number-input": "^3.4.9",
"sequelize": "^6.37.3",
"tronweb": "3",
"twilio": "^5.2.2",
"validator": "^13.12.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}