-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "george",
"private": true,
"scripts": {
"dev": "next dev",
"deploy": "gh-pages -d out",
"predeploy": "npm run build",
"server": "tsc && nodemon build/scripts/server.js",
"crawl": "tsc && node build/scripts/crawler.js",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@sgratzl/chartjs-chart-boxplot": "^3.7.1",
"bootstrap": "^5.1.3",
"chart.js": "^3.7.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"fs": "^0.0.1-security",
"jsdom": "^19.0.0",
"lodash": "^4.17.21",
"mongodb": "^4.4.1",
"next": "12.1.2",
"next-connect": "^0.12.2",
"node-fetch": "^3.2.3",
"react": "18.0.0",
"react-chartjs-2": "^4.1.0",
"react-dom": "18.0.0",
"react-tabs": "^5.1.0",
"react-tooltip": "^4.2.21",
"sass": "^1.49.11",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsdom": "^16.2.14",
"@types/lodash": "^4.14.181",
"@types/mongodb": "^4.0.7",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/uuid": "^8.3.4",
"eslint": "8.12.0",
"eslint-config-next": "12.1.2",
"gh-pages": "^3.2.3",
"typescript": "4.6.3"
}
}