-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
executable file
·97 lines (97 loc) · 2.81 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
{
"name": "spyros-frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "prettier --write '**/*.tsx' '**/*.ts' '**/*.js'",
"build": "webpack --config webpack.prod.js",
"start": "webpack serve",
"test:e2e": "jest",
"postinstall": "del-cli node_modules/@types/react-dom/node_modules/@types && del-cli node_modules/webpack/types.d.ts"
},
"keywords": [],
"author": "Craig Knott",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/react": "^11.2.3",
"@types/jest": "^26.0.23",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.4",
"del-cli": "^3.0.1",
"enzyme": "3.11.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"identity-obj-proxy": "3.0.0",
"import-sort": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"jest": "26.6.3",
"jest-puppeteer": "^6.0.3",
"modclean": "^3.0.0-beta.1",
"prettier": "^2.2.0",
"prettier-plugin-import-sort": "^0.0.6",
"pretty-quick": "^3.1.0",
"puppeteer": "^13.1.1",
"sass-loader": "^11.0.1",
"style-loader": "2.0.0",
"ts-jest": "^26.5.5",
"webpack": "^5.92.1",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@artsy/fresnel": "^1.4.0",
"@react-oauth/google": "^0.11.0",
"@types/d3": "^7.4.2",
"awesome-typescript-loader": "5.2.1",
"axios": "^0.21.4",
"d3": "^7.8.5",
"d3-dag": "^0.6.3",
"date-fns": "^2.16.1",
"dompurify": "^3.0.5",
"elkjs": "^0.7.1",
"marked": "^9.0.2",
"marked-react": "^2.0.0",
"npm": "^7.11.2",
"prism": "^4.1.2",
"raf": "3.4.1",
"react": "^17.0.2",
"react-d3-library": "^1.1.8",
"react-digraph": "^8.0.0-beta.2",
"react-dom": "^17.0.2",
"react-flow": "^1.0.3",
"react-flow-renderer": "^9.7.4",
"react-force-graph-2d": "^1.23.2",
"react-force-graph-3d": "^1.24.0",
"react-hot-toast": "^1.0.0",
"react-query": "^3.15.2",
"react-router-dom": "5.2.0",
"react-scripts": "^5.0.0",
"react-syntax-highlighter": "^15.5.0",
"regenerator-runtime": "^0.13.7",
"sass": "^1.32.12",
"semantic-ui-react": "^2.1.3",
"showdown": "^2.1.0",
"sinon": "^10.0.0",
"typescript": "4.2.4",
"web-worker": "^1.2.0"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}