forked from marcmll/next-snake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "next-snake",
"version": "0.0.1",
"description": "Minimal Snake browser game, built with Next and Google Cloud Firestore",
"main": "server.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcmll/next-snake.git"
},
"author": "Marc Müller",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcmll/next-snake/issues"
},
"homepage": "https://github.com/marcmll/next-snake",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@use-it/interval": "^1.0.0",
"next": "^12.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.45.2"
},
"devDependencies": {
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"eslint": "^8.6.0",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}