forked from MaastrichtU-IDS/perfect-graph
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.75 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
{
"name": "perfect-graph-new",
"version": "1.0.7",
"description": "Fork of the original perfect-graph with new changes.",
"main": "node_modules/expo/AppEntry.js",
"types": "dist/index.d.ts",
"author": {
"name": "cloud956",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [],
"homepage": "http://maastrichtu-ids.github.io/perfect-graph",
"scripts": {
"web": "EXPO_BETA=1 expo web",
"build-docs": "build-storybook -o docs-build",
"build:types": "tsc -p tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"type-check": "tsc --noEmit",
"build": "rm -rf dist && yarn build:js && yarn build:types",
"build:js": "babel src -d dist --config-file ./babel.config.js --extensions \".js,.jsx,.ts,.tsx\" --copy-files",
"fire": "yarn build && yarn version --patch && cp ./package.json ./dist || copy ./package.json ./dist && cd dist && npm publish",
"fire:beta": "rm -rf dist || rd /s /q dist && yarn build:js && yarn version --patch && cp ./package.json ./dist || copy ./package.json ./dist && cd dist && npm publish --tag beta",
"auth": "cd dist && npm login --always-auth && cd ..",
"generate:docs": "typedoc --excludeExternals --out /Users/turgaysaba/Desktop/projects/perfect-graph-docs/docs/type src/**/**/*",
"fmt": "prettier \"**/*.{ts,tsx,js,cjs,json,md,html}\" --ignore-path .gitignore --write"
},
"dependencies": {
"@inlet/react-pixi": "6.6.5",
"cytoscape": "3.20.0",
"pixi-cull": "2.1.0",
"pixi-viewport": "4.34.1",
"pixi.js": "6.2.0",
"typedoc-plugin-missing-exports": "0.22.6"
},
"devDependencies": {
"@emotion/react": "11.5.0",
"@emotion/styled": "11.3.0",
"@expo/webpack-config": "0.16.7",
"@mui/icons-material": "5.1.0",
"@mui/material": "5.1.0",
"@mui/styles": "5.1.0",
"@rjsf/core": "5.14.2",
"@rjsf/material-ui": "5.14.2",
"@rjsf/semantic-ui": "5.14.2",
"@rjsf/utils": "5.14.2",
"@rjsf/validator-ajv8": "5.14.2",
"@types/color": "3.0.2",
"@types/cytoscape": "3.14.11",
"@types/jsonld": "1.5.1",
"@types/n3": "1.4.4",
"@types/react": "17.0.34",
"@types/react-beautiful-dnd": "13.0.0",
"@types/react-dom": "17.0.11",
"@types/react-native": "~0.64.12",
"@types/victor": "1.1.0",
"aws-amplify": "4.3.5",
"brace": "0.11.1",
"chromatic": "5.6.0",
"colay": "0.0.68",
"colay-dev": "0.0.17",
"colay-docs": "0.0.60",
"colay-ui": "0.0.145",
"cytoscape-avsdf": "1.0.0",
"cytoscape-cise": "1.0.0",
"cytoscape-cola": "2.5.0",
"cytoscape-d3-force": "1.1.4",
"cytoscape-dagre": "2.3.2",
"cytoscape-euler": "1.2.2",
"cytoscape-fcose": "2.1.0",
"cytoscape-klay": "3.1.4",
"cytoscape-spread": "3.0.0",
"expo": "43.0.2",
"immer": "9.0.12",
"jsoneditor": "9.5.7",
"jsoneditor-react": "3.1.1",
"jsonld": "5.2.0",
"jsonld-context-parser": "2.1.5",
"n3": "1.11.2",
"pixi-flex-layout": "1.0.3",
"prettier": "^3.0.3",
"rdf-literal": "1.3.0",
"rdflib": "2.2.10",
"react": "^17.0.2",
"react-addons-perf": "15.4.2",
"react-beautiful-dnd": "13.1.0",
"react-color": "2.19.3",
"react-dom": "^17.0.2",
"react-native": "0.64.2",
"react-native-web": "0.17.5",
"to-json-schema": "0.2.5",
"typedoc": "0.22.10",
"typedoc-plugin-markdown": "3.11.8",
"typescript": "4.5.4",
"webpack-bundle-analyzer": "4.3.0",
"yoga-layout-prebuilt": "1.10.0"
},
"private": false,
"peerDependencies": {
"colay": "*",
"colay-ui": "*",
"react": "*",
"react-dom": "*"
},
"prettier": {
"trailingComma": "none",
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"bracketSpacing": false,
"arrowParens": "avoid",
"useTabs": false,
"printWidth": 120
}
}