-
Notifications
You must be signed in to change notification settings - Fork 230
/
package.json
118 lines (118 loc) · 3.73 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
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
118
{
"name": "giveth-dapp",
"version": "1.3.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.5.0",
"@davatar/react": "^1.8.1",
"@ethersproject/providers": "^5.5.2",
"@feathersjs/authentication-client": "^4.5.13",
"@feathersjs/feathers": "^4.5.12",
"@feathersjs/rest-client": "^4.5.12",
"@feathersjs/socketio-client": "^4.5.13",
"@giveth/bridge-contract": "^1.0.6",
"@giveth/liquidpledging-contract": "^2.0.0-beta.6",
"@giveth/lpp-campaign": "^2.0.0-beta.1",
"@giveth/lpp-capped-milestone": "^1.1.2",
"@giveth/lpp-milestones": "^2.0.0-beta.4",
"@sentry/react": "^6.8.0",
"@sentry/tracing": "^6.8.0",
"antd": "^4.12.2",
"antd-img-crop": "^3.13.2",
"axios": "^0.21.2",
"bignumber.js": "^8.1.1",
"bnc-onboard": "^1.29.0",
"feathers-hooks-common": "^5.0.5",
"feathers-reactive": "^0.8.2",
"file-saver": "^2.0.5",
"history": "^4.9.0",
"jwt-decode": "^3.1.2",
"localforage": "^1.7.3",
"lodash.debounce": "4.0.8",
"lottie-react": "^2.1.0",
"moment": "^2.24.0",
"node-fetch": "^2.6.7",
"node-sass-chokidar": "^1.5.0",
"prop-types": "^15.7.2",
"quill-image-resize-module-react": "^3.0.0",
"react": "^17.0.2",
"react-avatar": "^3.10.0",
"react-dom": "^17.0.2",
"react-helmet": "^5.2.1",
"react-helmet-async": "^1.0.2",
"react-html-parser": "^2.0.2",
"react-image-file-resizer": "^0.3.10",
"react-js-pagination": "^3.0.1",
"react-quill": "^1.3.3",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-share": "^2.4.0",
"react-tooltip": "^3.11.1",
"socket.io-client": "2.4.0",
"uuid": "^8.3.2",
"web3": "^1.2.2"
},
"devDependencies": {
"@sentry/cli": "^1.67.2",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jsdoc": "^3.5.5",
"lint-staged": "^7.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2"
},
"scripts": {
"precommit": "lint-staged",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "yarn build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "yarn build-css && react-scripts --max_old_space_size=2048 build",
"serve": "yarn build && pm2 serve -s build",
"test": "react-scripts test --env=jsdom",
"eslint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"eslint:fix": "eslint --fix \"src/**/*.{js,jsx}\" --quiet",
"eject": "react-scripts eject",
"prettify": "prettier --write 'src/**/*.js*'",
"doc": "jsdoc src -r -d docs",
"preci": "rm -fr node_modules",
"ci": "yarn install --frozen-lockfile",
"release": "(export REACT_APP_SENTRY_RELEASE=$(git rev-parse --short HEAD); yarn build && node scripts/sentry.js)"
},
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"prettier --single-quote --write",
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Giveth/giveth-dapp.git"
},
"author": {
"name": "Giveth",
"email": "[email protected]",
"url": "https://giveth.io"
},
"license": "GPL-3.0",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}