-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "gomokuio",
"version": "2.0.0",
"description": "gomokuio webgame",
"repository": "https://github.com/cjaewon/gomokuio.git",
"author": "cjaewon <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node server-dist/app.js",
"parcel": "parcel client/index.html",
"parcel:watch": "parcel watch client/index.html",
"build": "parcel build client/index.html --no-source-maps && tsc -p server",
"server": "node server-dist/app.js",
"server:build": "tsc -p server",
"server:dev": "yarn server:build && yarn server"
},
"devDependencies": {
"@parcel/transformer-sass": "2.0.0-beta.2",
"@types/koa": "^2.11.3",
"@types/koa-static": "^4.0.1",
"@types/pino": "^6.3.0",
"@types/ws": "^7.2.5",
"sass": "^1.26.9",
"typescript": "^3.9.5"
},
"dependencies": {
"koa": "^2.13.0",
"koa-static": "^5.0.0",
"parcel": "^2.0.0-beta.2",
"pino": "^6.3.2",
"toastify-js": "^1.8.0",
"ws": "^7.3.0"
},
"browserslist": [
"last 1 Chrome version"
]
}