-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 952 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
33
34
35
36
37
38
{
"name": "mmolife-web-client",
"version": "1.0.0",
"description": "Conway's game of life client",
"main": "index.js",
"scripts": {
"start": "run-p watch-compile watch-web",
"watch-compile": "webpack --watch",
"watch-web": "live-server --watch=www/ --mount=/:www",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Solirius/mmolife-web-client.git"
},
"keywords": [
"conways",
"game",
"of",
"life"
],
"author": "Solirius",
"license": "MIT",
"bugs": {
"url": "https://github.com/Solirius/mmolife-web-client/issues"
},
"homepage": "https://github.com/Solirius/mmolife-web-client#readme",
"devDependencies": {
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
}
}