-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 2.6 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
{
"name": "@oslabs-beta/d3reactor",
"version": "0.0.13",
"description": "Open-source charting library for creating performant, responsive data visualizations in React",
"keywords": ["d3", "react", "chart", "graph", "svg", "visualization", "data visualization"],
"main": "./dist/index.js",
"types": "./dist/types/src/index.d.ts",
"files": [
"dist/**/*"
],
"sideEffects": [
"*.css"
],
"scripts": {
"build": "webpack --config webpack.prod.ts",
"dev": "webpack-dev-server --config webpack.dev.ts --open",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test": "jest --config jest.config.ts",
"test-cypress": "webpack-dev-server --config webpack.cypress.ts --open",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/d3reactor.git"
},
"author": "Robert Crocker [email protected], Dmytro Iershov [email protected], Ece Ozalp [email protected], Travis Lockett [email protected], Eric Mulhern [email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/d3reacts/issues"
},
"homepage": "https://github.com/oslabs-beta/d3reacts#readme",
"dependencies": {
"@types/d3": "^7.1.0",
"@types/styled-components": "5.1.21",
"d3": "^7.1.1",
"styled-components": "5.3.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/html-webpack-plugin": "^3.2.6",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.21",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"css-loader": "6.5.1",
"cypress": "9.3.1",
"dotenv": "^10.0.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.7",
"jest-css-modules": "^2.1.0",
"prettier": "2.5.1",
"sass-loader": "^12.3.0",
"style-loader": "3.3.1",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.4",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}