-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.01 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "game",
"version": "1.0.0",
"private": true,
"repository": "https://github.com/cosmoshr/Game",
"license": "GPL-3.0-or-later",
"description": "The base game repository",
"main": "dist/electron-renderer/electron.js",
"scripts": {
"eslint": "eslint src",
"stylelint": "stylelint src/sass/**/*.scss",
"lint": "yarn eslint && yarn stylelint",
"lint:fix": "yarn eslint --fix && yarn stylelint --fix",
"build": "webpack -p --progress --config config/webpack.prod.js",
"build:electron": "cross-env WEBPACK_ENV=electron-renderer yarn build && electron-builder",
"serve": "webpack-dev-server -d --progress --color --config config/webpack.dev.js --host 0.0.0.0",
"serve:electron": "concurrently \"cross-env WEBPACK_ENV=electron-renderer yarn serve\" \"wait-on http://localhost:8080 && cross-env ELECTRON_ENV=serve electron electron.js\"",
"test": "echo No test",
"postinstall": "git submodule update --init --recursive"
},
"sideEffects": false,
"build": {
"productName": "Cosmos Habititation Race",
"files": [
"dist/electron-renderer/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"buildResources": "src"
},
"publish": null,
"icon": "public/favicon.png"
},
"dependencies": {
"dexie": "^2.0.4",
"nanobus": "^4.4.0",
"pixi-cull": "^0.5.0",
"pixi-sound": "^3.0.3",
"pixi-viewport": "^3.23.2",
"pixi.js": "^5.1.1",
"subworkers": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-private-methods": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.4",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"breakpoint-sass": "^2.7.1",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.1.1",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"electron": "5.0.6",
"electron-builder": "^21.0.15",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"file-loader": "^4.0.0",
"ghooks": "^2.0.4",
"global": "^4.4.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"prettier-eslint": "^9.0.0",
"raw-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"terser-webpack-plugin": "^1.3.0",
"to-string-loader": "^1.1.5",
"url-loader": "^2.0.1",
"wait-on": "^3.3.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1",
"worker-loader": "^2.0.0"
},
"config": {
"ghooks": {
"pre-commit": "yarn lint",
"post-merge": "yarn install",
"post-checkout": "yarn install"
}
}
}