-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "forge",
"productName": "Forge",
"title": "Forge",
"version": "0.0.1",
"description": "A real-time-strategy ECS sandbox.",
"author": "Ian Paschal",
"license": "MIT",
"homepage": "https://github.com/ianpaschal/forge#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ianpaschal/forge.git"
},
"bugs": {
"url": "https://github.com/ianpaschal/forge/issues"
},
"keywords": [
"entity-component-system",
"game-engine",
"javascript",
"node",
"nodejs",
"real-time-strategy",
"rts"
],
"scripts": {
"build": "electron-builder",
"docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"lint": "eslint --fix",
"pack:dev": "NODE_ENV=development webpack --config webpack/dev.config.js",
"pack:prod": "NODE_ENV=production webpack --config webpack/prod.config.js",
"prestart": "NODE_ENV=development webpack --config webpack/dev.config.js",
"start": "electron ."
},
"main": "./dist/main.bundle.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"deepmerge": "^2.1.0",
"socket.io": "^2.1.1",
"three": "^0.87.1",
"uuid": "^3.2.1",
"vue": "^2.5.16",
"vuex": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"css-loader": "^3.0.0",
"electron": "^2.0.8",
"electron-builder": "^20.43.0",
"electron-reload": "^1.4.0",
"eslint": "^5.16.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-vue": "^4.5.0",
"file-loader": "^0.9.0",
"grunt": "^1.0.4",
"grunt-eslint": "^20.1.0",
"grunt-jsdoc": "^2.2.1",
"jsdoc": "^3.5.5",
"load-grunt-tasks": "^3.5.2",
"minami": "^1.2.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"vue-loader": "^14.2.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.34.0",
"webpack-merge": "^4.1.2"
}
}