-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 984 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
{
"name": "tic-tac-toe",
"version": "0.0.1",
"private": true,
"description": "An online multiplayer game of tic-tac-toe.",
"type": "module",
"author": "Rodrigo Saling <rodrigosaling@gmail.com>",
"license": "MIT",
"keywords": [
"tic-tac-toe",
"multiplayer"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rodrigosaling/tic-tac-toe"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev:web": "npm run dev --workspace packages/web",
"dev:server": "cd packages/server && deno run --allow-net --watch main.ts",
"nuke": "rm -rf node_modules && rm -rf packages/*/node_modules && rm -rf packages/*/dist && npm cache clean --force && npm i"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"prettier": "3.3.3",
"typescript-eslint": "^8.14.0"
}
}