-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
89 lines (89 loc) · 2.57 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
{
"name": "@public-accountability/oligrapher",
"version": "4.0.16",
"description": "Network graph visualizer built for LittleSis",
"main": "index.ts",
"scripts": {
"build": "bin/build",
"build-dev": "bin/build-dev",
"dev": "bin/dev",
"release": "bin/release",
"serve": "http-server -c-1 -p 8000 html",
"sass": "sass app/oligrapher.scss html/oligrapher.css",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/public-accountability/oligrapher"
},
"author": "Public Accountability Initiative",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/public-accountability/oligrapher/issues"
},
"homepage": "https://littlesis.org/oligrapher",
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^36.0.1",
"@ckeditor/ckeditor5-react": "^5.1.0",
"@emotion/react": "^11.10.6",
"@hello-pangea/color-picker": "^3.2.2",
"@hello-pangea/dnd": "^16.2.0",
"@mui/lab": "^5.0.0-alpha.124",
"@mui/material": "^5.11.15",
"@rails/actioncable": "^7.0.4",
"@reduxjs/toolkit": "^1.9.3",
"@types/lodash": "^4.14.192",
"@types/react-redux": "^7.1.25",
"@types/redux-logger": "^3.0.9",
"d3-force": "^3.0.0",
"esbuild": "^0.17.14",
"immer": "^9.0.21",
"lodash": "^4.17.21",
"nanoid": "^4.0.2",
"p-limit": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-hotkeys-hook": "^4.3.8",
"react-icons": "^4.8.0",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.3",
"sass": "^1.60.0",
"slugify": "^1.6.6",
"typescript": "^5.0.2",
"use-resize-observer": "^9.1.0",
"wretch": "^2.5.1"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"babel-jest": "^29.5.0",
"http-server": "^14.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"msw": "^1.2.1",
"react-test-renderer": "^18.2.0",
"redux-saga-test-plan": "^4.0.6",
"whatwg-fetch": "^3.6.2"
},
"jest": {
"testMatch": [
"**/test/**/*.test.[jt]s?(x)"
],
"transformIgnorePatterns": [
"node_modules/(?!(p-limit|yocto-queue|nanoid|react-hotkeys-hook)/)"
],
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"./jest.setup.js"
]
}
}