-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.53 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
{
"name": "phoenixcommand.net",
"version": "0.8.0",
"description": "Mobile app to manage a Phoenix Command game",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"prepublishOnly": "npm run build",
"watch": "webpack --watch",
"webpack": "webpack",
"start": "webpack --watch & webpack-dev-server --open-page 'webpack-dev-server/dist'",
"test": "mocha --require babel-core/register --require ./test/config.js --recursive",
"test:watch": "npm test -- --watch",
"document": "documentation build src/** -f html -o docs --shallow"
},
"author": "Matthew Butler",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"documentation": "^14.0.0",
"mocha": "^10.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^4.11.1"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
">0.25%",
"not ie 11",
"not op_mini all"
]
}
}
]
],
"plugins": [
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
},
"dependencies": {
"firebase": "^8.10.1",
"firebaseui": "^4.0.0",
"lodash": "^4.17.21",
"phoenix-functions": "^0.9.82"
}
}