-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.64 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
{
"scripts": {
"dev": "webpack-dev-server --mode development",
"build": "rm -rf dist && webpack --mode production",
"lint": "eslint src --ext .js --ext .jsx",
"deploy:ipfs": "npm run build && ipfs add -r dist",
"deploy:ssh": "npm run build && ./scripts/deploy-vps.sh",
"deploy:ftp": "npm run build && node ./scripts/deploy-ftp.js"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"dotenv": "^8.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.1",
"ftp-deploy": "^2.3.7",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"prettier": "^2.1.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@udragon/google-fonts-webpack-plugin": "^1.2.6",
"bootstrap": "^4.5.0",
"dayjs": "^1.8.32",
"dotenv-webpack": "^1.8.0",
"eslint": "^7.0.0",
"eslint-plugin-babel": "^5.3.0",
"ethers": "^5.0.14",
"favicons-webpack-plugin": "^3.0.1",
"file-loader": "^6.0.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.7"
}
}