-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 916 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 916 Bytes
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
{
"name": "lightning-graph",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"server": "ts-node server/index.ts"
},
"dependencies": {
"axios": "^0.27.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"d3": "^7.4.4",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"next": "12.1.5",
"react": "18.0.0",
"react-dom": "18.0.0",
"ts-node": "^10.7.0",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/d3": "^7.1.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/node": "17.0.25",
"@types/react": "18.0.6",
"@types/react-dom": "18.0.2",
"@types/ws": "^8.5.3",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"typescript": "4.6.3"
}
}