-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 866 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
{
"name": "emojigame",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-client-old": "cd client && elm make src/Main.elm --output=public/dist.js && lessc style.less public/style.css && cd ..",
"build-client": "cd client && elm make src/Emojigame.elm --output=public/dist.js && lessc style.less public/style.css && cd ..",
"build-server": "tsc --build server/tsconfig.json",
"build": "npm run build-client && npm run build-server",
"run-server": "node server/dist/server/server.js",
"start": "npm run build && npm run run-server"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"ws": "^7.2.3"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/ws": "^7.2.3",
"elm": "^0.19.1-5",
"less": "^4.1.1",
"typescript": "^4.3.5"
}
}