-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "kiel-canal-game",
"version": "1.0.0",
"description": "KielCanal Game",
"main": "server.js",
"engines": {
"node": "12.18.2"
},
"scripts": {
"start": "node server.js",
"dev": "parcel src/index.html",
"build": "parcel build src/index.html"
},
"author": "simarmannsingh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/simarmannsingh/Kiel-canal.git"
},
"homepage": "https://kiel-canal-game.herokuapp.com/",
"devDependencies": {
"@babel/core": "^7.10.5",
"@types/node": "^14.14.36",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"express": "^4.17.1",
"minimist": ">=1.2.2",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.4.3",
"typescript": "^4.1.3"
},
"dependencies": {
"@babel/core": "^7.10.5",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"express": "^4.17.1",
"logfmt": "^1.3.2",
"minimist": ">=1.2.2",
"parcel-bundler": "1.12.5",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.4.3",
"phaser": "3.50",
"serve": "^11.3.2",
"typescript": "^4.1.3"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
}
}