-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.82 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
{
"name": "spire-companion",
"displayName": "Spire Companion",
"version": "1.0.0",
"description": "Stress and fallout tracker for the Spire RPG",
"repository": "https://github.com/mottokrosh/spire-stress-tracker",
"homepage": "https://mottokrosh.com/apps/spire-companion/",
"bugs": {
"url": "https://github.com/mottokrosh/spire-stress-tracker/issues",
"email": "[email protected]"
},
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"start": "npx http-server www"
},
"author": "Frank Reding <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.15.3",
"cordova": "^8.0.0",
"cordova-android": "^6.2.3",
"cordova-ios": "^4.4.0",
"cordova-plugin-hidden-statusbar": "^1.0.0",
"cordova-plugin-whitelist": "^1.3.2",
"cross-env": "^3.2.4",
"focus-trap": "^2.3.0",
"laravel-mix": "^1.2.0",
"thenby": "^1.2.3",
"vue": "^2.3.0",
"vue-feather-icons": "^0.1.1",
"vue-motion": "^0.2.0"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-hidden-statusbar": {}
},
"platforms": [
"android",
"ios"
]
},
"engines": {
"node": ">=8.1.0",
"npm": "^5.2.0"
},
"devDependencies": {
"eslint": "^4.18.1"
}
}