-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.41 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.41 KB
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
{
"name": "tech-map-d3",
"version": "1.0.3",
"description": "Biblioteca para visualizar a relação de tecnologias, práticas e projetos em uma mapa interativo usando d3.js",
"scripts": {
"start": "webpack-dev-server",
"build": "cross-env NODE_ENV=production webpack",
"build:lib": "cross-env NODE_ENV=production tsc -p tsconfig.lib.json"
},
"main": "map.js",
"repository": {
"type": "git",
"url": "git+https://github.com/agespucrs/tech-map-d3.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/agespucrs/tech-map-d3/issues"
},
"homepage": "https://agespucrs.github.io/tech-map-d3",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/d3": "^7.4.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"d3": "^7.6.1"
}
}