-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 988 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
30
31
32
{
"name": "kajam-replit-2021",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm:dev:server\" \"npm:dev:javascript\"",
"dev:server": "node server/index.js",
"dev:javascript": "webpack --config webpack.dev.config.js --watch",
"prod": "npm run prod:server && npm run prod:javascript",
"prod:server": "node server/index.js",
"prod:javascript": "webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Curious-Coders-Official/Kajam-Replit-2021.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Curious-Coders-Official/Kajam-Replit-2021/issues"
},
"homepage": "https://github.com/Curious-Coders-Official/Kajam-Replit-2021#readme",
"dependencies": {
"concurrently": "^6.3.0",
"express": "^4.17.1",
"phaser": "^3.55.2",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
}
}