-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
116 lines (116 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
109
110
111
112
113
114
115
116
{
"name": "@nteract/data-explorer",
"version": "8.2.12",
"description": "Transform for data resource JSON",
"main": "lib/",
"types": "lib/index.d.ts",
"scripts": {
"commit": "cz",
"clean": "yarn --force autoclean && yarn cache clean && rm -rf node_modules dist lib",
"build": "tsc -b",
"format": "prettier --write ./src",
"lint": "eslint ./src",
"type-check": "tsc --pretty -p tsconfig.json",
"test": "jest",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"release": "yarn build && auto shipit",
"prepare": "husky install"
},
"author": "Elijah Meeks <[email protected]>",
"repository": "https://github.com/nteract/data-explorer",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"numeral": "^2.0.6",
"react": "^16.13.1",
"styled-components": ">= 4"
},
"files": [
"lib",
"src",
"profiles"
],
"license": "BSD-3-Clause",
"browserslist": [
">1%",
"last 1 version",
"Firefox ESR",
"not dead"
],
"dependencies": {
"@nteract/octicons": "^2.0.0",
"d3-collection": "^1.0.7",
"d3-scale": "^3.0.0",
"d3-shape": "^1.2.2",
"numeral": "^2.0.6",
"react-color": "^2.14.1",
"react-table": "6.11.5",
"react-table-hoc-fixed-columns": "2.1.3",
"semiotic": "^2.0.0-rc.8"
},
"devDependencies": {
"@auto-it/conventional-commits": "^10.29.3",
"@auto-it/first-time-contributor": "^10.29.3",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@nteract/outputs": "^3.0.0",
"@types/d3-array": "^2.0.0",
"@types/d3-collection": "^1.0.7",
"@types/d3-interpolate": "^1.3.0",
"@types/d3-scale": "^2.0.2",
"@types/d3-shape": "^1.2.7",
"@types/jest": "^24.0.25",
"@types/numeral": "^0.0.26",
"@types/react-color": "^3.0.0",
"@types/react-table": "^6.0.0",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"acorn": "^7.1.1",
"acorn-jsx": "^5.1.0",
"auto": "^10.29.3",
"babel-loader": "^8.0.6",
"commitizen": "^4.2.4",
"css-loader": "^3.4.1",
"cz-conventional-changelog": "^3.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^7.30.0",
"husky": "^6.0.0",
"jest": "^24.9.0",
"lint-staged": ">=10",
"numeral": "^2.0.6",
"prettier": "^2.3.2",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-docgen-typescript": "^1.16.2",
"react-dom": "^16.12.0",
"react-styleguidist": "^10.4.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.2",
"styled-components": "^4.1.3",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.7.4",
"typescript-styled-plugin": "^0.15.0",
"typescript-tslint-plugin": "^0.5.5",
"webpack": "^4.41.5",
"webpack-dev-server": "^3.10.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.json,!package.json": [
"prettier --write"
]
}
}