forked from aragon/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.55 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
{
"name": "@aragon/ui",
"version": "0.40.1",
"author": "Aragon Association <[email protected]>",
"license": "MIT",
"repository": "github:aragon/aragon-ui",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"LICENSE",
"README.md",
"bin/",
"dist/"
],
"bin": {
"copy-aragon-ui-assets": "./bin/copy-aragon-ui-assets"
},
"scripts": {
"build": "rollup -c",
"deploy:site": "cd gallery && npm run build && echo 'ui.aragon.org' > dist/CNAME && cp public/favicon.svg dist && gh-pages -d dist",
"dev": "rollup -c -w",
"flow": "flow",
"icons:build": "svgr --no-semi --replace-attr-value '#8B9396=currentColor' --no-title -d src/icons/components src/icons/svg",
"jest": "jest",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"optimize:svg": "find ./src -name *.svg -exec svgo --config '{ \"plugins\": [ { \"removeDesc\": {\"removeAny\": true} }, { \"removeTitle\": true }, { \"removeViewBox\": false } ] }' {} \\;",
"prepare": "npm run build",
"prepublishOnly": "git push && git push --tags",
"start": "cd gallery && npm start",
"test": "npm run lint && npm run jest",
"theme:build": "scripts/oco-to-js.js < src/theme/Aragon.oco > src/theme/aragon.js"
},
"peerDependencies": {
"react": "^16.3.1",
"react-dom": "^16.3.1",
"styled-components": ">=4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-styled-components": "^1.10.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^4.0.0",
"gh-pages": "^1.0.0",
"har-validator": "^5.1.3",
"husky": "^1.1.4",
"jest": "^24.8.0",
"lint-staged": "^8.1.0",
"opencolor": "^0.2.0",
"opencolor-converter": "git://github.com/opencolor-tools/opencolor-converter.git#v2.1.23",
"prettier": "^1.17.1",
"react-media": "^1.6.1",
"rollup": "^0.67.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-progress": "^0.4.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup-plugin-url": "^2.0.1",
"svgo": "^1.0.3",
"svgr": "^1.1.0"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"airbnb-prop-types": "^2.9.0",
"arg": "^2.0.0",
"command-exists": "^1.2.6",
"dayjs": "^1.8.14",
"lodash-es": "^4.17.11",
"onecolor": "^3.0.5",
"popper.js": "^1.14.4",
"prop-types": "^15.6.0",
"react-blockies": "^1.4.0",
"react-display-name": "^0.2.3",
"react-onclickout": "^2.0.8",
"react-spring": "^7.2.11",
"recursive-copy": "^2.0.9"
},
"browserslist": {
"development": "> 1%",
"production": "> 1%"
},
"husky": {
"hooks": {
"pre-push": "npm run lint",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"modulePaths": [
"<rootDir>"
]
}
}