forked from Giveth/giveth-dapp
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.05 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.05 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
{
"name": "b4h-dapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@feathersjs/authentication-client": "^1.0.11",
"@feathersjs/client": "^3.7.8",
"@feathersjs/commons": "^4.0.0",
"@feathersjs/express": "^1.3.1",
"@feathersjs/feathers": "^3.3.1",
"@feathersjs/rest-client": "^1.4.7",
"@feathersjs/socketio": "^3.2.9",
"@feathersjs/socketio-client": "^1.2.1",
"@portis/web3": "^2.0.0-beta.11",
"bignumber.js": "^8.0.2",
"ethereumjs-abi": "^0.6.5",
"feathers-hooks-common": "^4.20.2",
"feathers-reactive": "^0.7.2",
"formsy-react": "^1.1.4",
"formsy-react-components": "^1.0.0",
"giveth-liquidpledging": "2.0.0-beta.4",
"history": "^4.7.2",
"localforage": "^1.5.0",
"moment": "^2.19.2",
"node-fetch": "^2.1.1",
"node-sass-chokidar": "^1.3.4",
"prop-types": "^15.7.2",
"react": "^16.8.1",
"react-avatar": "^3.5.0",
"react-cropper": "^1.0.1",
"react-datepicker": "1.8.0",
"react-dom": "^16.8.1",
"react-ga": "^2.5.3",
"react-helmet": "^5.2.0",
"react-html-parser": "^2.0.2",
"react-input-token": "^1.1.2",
"react-js-pagination": "^3.0.1",
"react-modal": "^3.5.1",
"react-quill": "^1.1.0",
"react-rangeslider": "^2.2.0",
"react-responsive-masonry": "^2.0.0",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-scripts": "2.1.5",
"react-toastify": "^4.5.2",
"react-toggle": "^4.0.2",
"request": "^2.85.0",
"socket.io-client": "^2.0.4",
"sweetalert": "^2.0",
"web3": "1.0.0-beta.35",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"babel-loader": "^8.0.5",
"eslint": "5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jsdoc": "^3.5.5",
"lint-staged": "^8.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"webpack": "4.28.3"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run 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": "npm run build-css && react-scripts build",
"serve": "npm run build && pm2 serve -s build",
"test": "react-scripts test --env=jsdom",
"eslint": "eslint 'src/**/*.js*'",
"eslint:fix": "npm run eslint --fix",
"eject": "react-scripts eject",
"prettify": "prettier --write 'src/**/*.js*'",
"doc": "jsdoc src -r -d docs"
},
"repository": {
"type": "git",
"url": "https://github.com/Giveth/giveth-dapp.git"
},
"author": {
"name": "Blockchain 4 Humanity",
"email": "hello@b4h.world",
"url": "http://b4h.world"
},
"license": "GPL-3.0",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}