-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
94 lines (94 loc) · 2.69 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
{
"name": "@streetscape.gl/monochrome",
"version": "1.0.0-beta.4",
"description": "A toolkit of React components for streetscape.gl",
"license": "MIT",
"keywords": [
"react",
"UI"
],
"repository": {
"type": "git",
"url": "https://github.com/uber-web/monochrome.git"
},
"main": "dist/es5/index.js",
"module": "dist/esm/index.js",
"esnext": "dist/es6/index.js",
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"build": "scripts/build.sh",
"cover": "nyc npm run test",
"typecheck": "flow check || true",
"lint": "scripts/lint.sh",
"publish-prod": "npm run build && npm run test && npm publish",
"publish-beta": "npm run build && npm run test && npm publish --tag beta",
"start": "npm run storybook",
"test": "NODE_ENV=test tape -r @babel/register test/node.js",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook -c .storybook -o storybook-static"
},
"dependencies": {
"@emotion/core": "^10.0.0",
"@emotion/styled": "^10.0.0",
"debounce": "^1.1.0",
"popper.js": "^1.11.1",
"prop-types": "^15.5.10",
"react-virtualized": "^9.18.5",
"react-vis": "^1.11.2"
},
"peerDependencies": {
"react": ">=15.x"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@storybook/addon-actions": "^4.0.7",
"@storybook/addon-knobs": "^4.0.7",
"@storybook/addon-links": "^4.0.7",
"@storybook/addon-options": "^4.0.7",
"@storybook/react": "^4.0.7",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0-beta",
"babel-plugin-istanbul": "^4.1.1",
"babel-preset-minify": "^0.4.0-alpha.caaefb4c",
"coveralls": "^2.13.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^4.13.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-uber-es2015": "^3.1.2",
"eslint-config-uber-jsx": "^3.3.3",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.80.0",
"jsdom": "^9.11.0",
"module-alias": "^2.0.0",
"nyc": "^10.2.0",
"pre-commit": "^1.2.2",
"prettier": "^1.9.2",
"prettier-check": "^2.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"source-map-loader": "^0.2.1",
"storybook-readme": "^4.0.5",
"tap-browser-color": "^0.1.2",
"tape": "^4.9",
"tape-catch": "^1.0.4",
"webpack": "^4.3.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
},
"pre-commit": [
"lint",
"test"
]
}