-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "@tutturu-tv/rush",
"version": "1.0.0",
"description": "A fast game",
"main": "dist/index.js",
"scripts": {
"start": "node .",
"build": "yarn build:server && yarn build:client",
"build:server": "tsc",
"build:client": "parcel build src/client/index.html --public-url /static --out-dir dist/client",
"dev": "yarn lint && yarn clean && yarn build && cross-env NODE_ENV=development yarn start",
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"author": "Tutturu FOSS Team <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.7",
"@types/ioredis": "^4.17.3",
"@types/node": "^14.6.0",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"parcel-bundler": "^1.12.4",
"typescript": "^3.9.0 < 3.10.0"
},
"dependencies": {
"@cryb/mesa": "^1.4.7",
"express": "^4.17.1",
"helmet": "^4.0.0",
"konva": "^7.0.6",
"mesa-js-client": "^1.4.6"
},
"engines": {
"node": ">=12"
}
}