-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.3 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.3 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
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
{
"name": "twitterviz2",
"version": "0.2.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.4.16",
"@craco/craco": "^5.9.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@react-spring/three": "^9.3.0",
"@react-three/cannon": "^4.0.1",
"@react-three/drei": "^7.15.1",
"@react-three/fiber": "^7.0.16",
"@react-three/postprocessing": "^2.0.5",
"@rehooks/component-size": "^1.0.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.4.1",
"@types/jest": "^24.0.0",
"@types/node": "^12.20.33",
"@types/react": "^16.14.17",
"@types/react-dom": "^16.9.14",
"@xstate/react": "^1.6.1",
"d3": "^5.16.0",
"d3-force-cluster": "^0.1.2",
"d3-scale-chromatic": "^3.0.0",
"faunadb": "^3.0.1",
"graphql": "^15.5.1",
"jotai": "^1.4.0",
"leva": "^0.9.14",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"postprocessing": "^6.22.3",
"query-string": "^6.13.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-player": "^2.9.0",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-scripts": "^4.0.3",
"react-spring": "^9.3.0",
"react-twitter-widgets": "^1.10.0",
"react-use": "^17.3.1",
"react-use-gesture": "^9.1.3",
"styled-components": "^5.3.0",
"three": "^0.131.3",
"three-forcegraph": "^1.39.1",
"three-stdlib": "^2.5.4",
"ts-loader": "^8.3.0",
"use-why-did-you-update": "^0.1.0",
"xstate": "^4.23.1",
"zustand": "^2.2.3"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@material-ui/types": "^5.1.0",
"@testing-library/cypress": "^8.0.1",
"@types/d3": "^5.7.2",
"@types/lodash": "^4.14.171",
"@types/react-router": "^5.1.16",
"@types/three": "^0.130.1",
"chromatic": "^5.9.2",
"concurrently": "^6.3.0",
"cypress": "^8.7.0",
"eslint-plugin-react-hooks": "^4.2.0",
"react-docgen-typescript-loader": "^2.2.0",
"react-is": "^17.0.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-no-circular-imports": "^0.7.0",
"tslint-react": "^5.0.0",
"tslint-react-hooks": "^2.2.2",
"typescript": "^4.3.5"
},
"proxy": "http://172.19.128.1:8080",
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1"
},
"scripts": {
"client": "craco start",
"build": "craco build",
"test": "craco test",
"start": "npm run dev",
"server": "cd twit && npm run start",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"eject": "react-scripts eject",
"generate": "node ./twit/index.js \"./src/tweets.json\"",
"codegen": "graphql-codegen --config codegen.yml",
"lint": "tslint -c tslint.json -p tsconfig.json \"src/**/*.ts*\"",
"chromatic": "npx chromatic --project-token=6zp25xq9xj6",
"cy:open": "npx cypress open"
}
}