-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
{
"name": "fancy-graph",
"version": "0.0.1",
"author": "Eric Easthope, eric.easthope@me.com, @ericeasthope",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ericeasthope/fancy-graph.git"
},
"bugs": {
"url": "https://github.com/ericeasthope/fancy-graph/issues"
},
"scripts": {
"dev": "next",
"build": "./node_modules/.bin/babel components --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"start": "next start",
"export": "next export",
"prettify": "prettier --write \"**/*.ts\" \"**/*.js\"",
"lint": "eslint . --ext .ts --ext .tsx",
"type": "tsc --jsx react",
"clean": "yarn lint; yarn type; yarn prettify"
},
"dependencies": {
"d3": "^5.16.0",
"d3-force-3d": "^2.1.0",
"d3-force-surface": "^0.5.7",
"styled-components": "^5.1.1"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@svgr/webpack": "^5.4.0",
"@types/d3": "^5.7.2",
"@types/node": "^14.6.2",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.6",
"next": "^9.5.2",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
}
}