-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 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
{
"version": "0.0.1",
"description": "a multiplayer replica of the mobile game Astro Party",
"repository": "https://github.com/itamar244/astreo-party.git",
"author": "Itamar Yatom <[email protected]>",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev:app": "webpack-dev-server --config packages/app/webpack.config.js",
"dev:server": "ts-node-dev packages/server/index.ts",
"dev": "npm-run-all -p dev:app dev:server",
"format": "prettier \"{./types/,./packages/**/}*.{js,ts,.d.ts}\" --write"
},
"devDependencies": {
"eslint": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.6",
"ts-loader": "^4.4.1",
"ts-node-dev": "^1.0.0-pre.26",
"tslint": "^5.10.0",
"typescript": "^2.9.2",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}