-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 976 Bytes
/
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
{
"name": "world-map-game",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"cypress": "cypress open"
},
"dependencies": {
"@turf/circle": "^6.5.0",
"@turf/length": "^6.5.0",
"bootstrap": "^5.1.3",
"crypto-browserify": "^3.12.0",
"mapbox-gl": "^2.7.0",
"nanoid": "^3.2.0",
"next": "12.0.10",
"process": "^0.11.10",
"random-country": "^1.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-map-gl": "^7.0.5",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"cypress": "^9.4.1",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.5.1",
"prettier": "2.5.1"
},
"browser": {
"crypto": false
}
}