forked from Giveth/giveth-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.24 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
{
"name": "giveth-dapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"bignumber.js": "^6.0.0",
"feathers": "^2.2.3",
"feathers-authentication-client": "^0.3.3",
"feathers-client": "^2.3.0",
"feathers-commons": "^0.8.7",
"feathers-hooks": "^2.1.2",
"feathers-hooks-common": "^3.7.2",
"feathers-reactive": "^0.5.2",
"feathers-rest": "^1.8.1",
"feathers-socketio": "^2.0.1",
"formsy-react": "^1.1.4",
"formsy-react-components": "^1.0.0",
"giveth-bridge": "1.0.2",
"giveth-liquidpledging": "1.0.1",
"giveth-react-scripts": "1.1.4",
"history": "^4.7.2",
"localforage": "^1.5.0",
"lpp-campaign": "1.0.0",
"lpp-capped-milestone": "1.0.1",
"lerna": "^2.5.1",
"minimetoken": "^0.2.0",
"moment": "^2.19.2",
"node-fetch": "^2.1.1",
"node-sass-chokidar": "^0.0.3",
"prop-types": "^15.5.10",
"react": "16.3.1",
"react-addons-shallow-compare": "^15.6.0",
"react-avatar": "^2.3.0",
"react-cropper": "^1.0.1",
"react-datepicker": "1.4.1",
"react-dom": "16.3.1",
"react-html-parser": "^2.0.2",
"react-input-token": "^1.1.2",
"react-js-pagination": "^3.0.1",
"react-portal": "^4.1.2",
"react-quill": "^1.1.0",
"react-rangeslider": "^2.2.0",
"react-responsive-masonry": "^1.5.0",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-skylight": "0.5.1",
"react-toastify": "2.1.7",
"react-toggle": "^4.0.2",
"request": "^2.85.0",
"socket.io-client": "^2.0.4",
"sweetalert": "^2.0",
"underscore": "^1.8.3",
"web3": "git://github.com/perissology/web3.js.git#contract-provider",
"web3-eth-accounts": "1.0.0-beta.34",
"web3-provider-engine": "^14.0.5",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.4.0",
"husky": "^1.0.0-rc.2",
"jsdoc": "^3.5.5",
"lint-staged": "^7.0.4",
"npm-run-all": "^4.1.3",
"prettier": "1.9.2"
},
"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",
"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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Giveth/giveth-dapp.git"
},
"author": {
"name": "Giveth",
"email": "[email protected]",
"url": "http://giveth.io"
},
"license": "GPL-3.0"
}