-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.37 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
{
"name": "two-player-hokm",
"version": "1.0.0",
"description": "",
"scripts": {
"dev-frontend": "NODE_ENV=development parcel frontend/index.html --dist-dir dist-ui",
"dev-backend": "NODE_ENV=development ts-node-dev backend/index.ts",
"start": "concurrently \"npm run dev-frontend\" \"npm run dev-backend\"",
"build-frontend": "parcel build frontend/index.html --public-url . --dist-dir dist-ui; mkdir -p dist-ui; cp frontend/favicon.ico dist-ui/",
"build-backend": "tsc -p tsconfig.json",
"build": "rm -rf dist-server; rm -rf dist-ui; npm run build-frontend; npm run build-backend"
},
"author": "Ardeshir Izadi (https://github.com/aghArdeshir)",
"license": "ISC",
"devDependencies": {
"@parcel/transformer-image": "^2.0.0-rc.0",
"@types/lodash": "^4.14.172",
"@types/node": "^16.7.9",
"@types/react": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"parcel": "^2.0.0-rc.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2"
},
"dependencies": {
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jss": "^10.7.1",
"socket.io": "^4.2.0",
"socket.io-client": "^4.2.0",
"uuid": "^8.3.2"
}
}