-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.14 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
{
"name": "@openworklabs/aragon-profile",
"version": "0.1.17",
"description": "a single profile component for the Aragon Client",
"author": "Schwartz10",
"license": "MIT",
"repository": "AutarkLabs/aragon-profile",
"main": "./dist/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir dist",
"clean": "rm -rf ./dist",
"lint": "eslint --ext .js src/",
"prepublishOnly": "npm run build",
"prepare-local-dev": "cd ./node_modules && rm -rf react && rm -rf react-dom && rm -rf styled-components && rm -rf web3-utils && rm -rf @aragon/ui && cd ../",
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"peerDependencies": {
"@aragon/ui": "^0.40.1",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-onclickout": "^2.0.8",
"react-spring": "^7.2.10",
"styled-components": "^4.2.1",
"web3-utils": "1.0.0-beta.33"
},
"dependencies": {
"3box": "1.10.5",
"ajv": "^6.10.0",
"dayjs": "^1.8.14",
"husky": "^3.0.1",
"ipfs-http-client": "^32.0.1",
"lodash.clonedeep": "^4.5.0",
"react-dropzone": "10.1.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.7.1",
"babel-runtime": "^6.26.0",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-standard": "^4.0.0",
"prettier": "^1.15.0"
},
"files": [
"dist",
"src",
"assets"
]
}