-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.59 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
{
"name": "ot-ui",
"version": "0.1.0",
"description": "Open Targets UI component library",
"main": "build/index.js",
"contributors": [
"Gareth Peat <[email protected]>",
"Alfredo Miranda <[email protected]>"
],
"license": "Apache-2.0",
"private": false,
"devDependencies": {
"@team-griffin/install-self-peers": "^1.1.1",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"codecov": "^3.0.4",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.1.0",
"fg-loadcss": "^2.0.1",
"husky": "^1.0.0-rc.13",
"jest": "^23.5.0",
"lint-staged": "^7.2.0",
"prettier": "^1.14.0",
"prop-types": "^15.6.2"
},
"scripts": {
"build": "babel lib -d build",
"build:watch": "babel lib -w -d build",
"eslint": "eslint . --fix --ext .js",
"version": "yarn build",
"postversion": "git push && git push --tags",
"prettier": "prettier --write",
"prettier:all": "prettier --write 'lib/**/*.js'",
"test": "jest",
"test:coverage": "yarn test --coverage",
"peers": "install-self-peers -- --ignore-scripts",
"report:coverage": "codecov",
"storybook": "start-storybook -p 6006 -s ./storybook-static",
"build-storybook": "build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"lib/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"**/*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"peerDependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.1",
"classnames": "^2.2.6",
"d3": "^5.7.0",
"fg-loadcss": "^2.0.1",
"file-saver": "^1.3.8",
"polished": "2.3.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-measure": "^2.1.0",
"react-router-dom": "^5.0.1",
"react-select": "^2.0.0",
"typeface-inter": "^3.3.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./lib/setupTests.js",
"collectCoverageFrom": [
"lib/**/*.js",
"!lib/index.js",
"!lib/setupTests.js"
]
},
"dependencies": {}
}