-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "worlds-of-game",
"version": "1.0.0",
"description": "Manage game sessions",
"main": "index.js",
"scripts": {
"test": "mocha --require @babel/register --recursive",
"start": "npm run dev",
"dev": "webpack --mode=development --watch",
"prod": "webpack --mode=production --watch"
},
"author": "CDA",
"license": "Apache License 2.0",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
"babel-loader": "latest",
"bootstrap": "^4.3.1",
"browser-sync": "latest",
"browser-sync-webpack-plugin": "latest",
"chai": "^4.2.0",
"cordova": "^9.0.0",
"cordova-plugin-whitelist": "^1.3.4",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"mini-css-extract-plugin": "^0.8.0",
"mocha": "^6.2.2",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack": "latest",
"webpack-cli": "latest"
},
"dependencies": {
"cordova-android": "^8.1.0",
"ionic": "^5.4.9",
"native-run": "^0.2.9"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {}
},
"platforms": [
"android"
]
}
}