-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 861 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
{
"name": "2048-game",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"test": "jest --watch",
"test-coverage": "jest --coverage --verbose"
},
"dependencies": {
"@types/lodash": "^4.17.0",
"@types/node": "20.12.2",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.23",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"lodash": "^4.17.21",
"next": "^14.1.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.1.0",
"typescript": "5.4.3",
"uid": "^2.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5"
}
}