-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
79 lines (79 loc) · 2.06 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
{
"name": "ffbeequip",
"version": "1.0.0",
"description": "FFBE Equip",
"main": "server.js",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "nyc mocha test/server --recursive",
"test:web": "mocha-webpack --webpack-config test/webpack.config.js --require test/setup.js test/static/*.js",
"build:dev": "webpack --mode development --watch",
"build": "webpack --mode production --hide-modules",
"prestart": "node config.js",
"start": "node server.js",
"start:useDist": "DEV_USE_DIST=yes node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyrgard/ffbeEquip.git"
},
"author": "Lyrgard",
"license": "ISC",
"bugs": {
"url": "https://github.com/lyrgard/ffbeEquip/issues"
},
"homepage": "https://github.com/lyrgard/ffbeEquip#readme",
"dependencies": {
"@sindresorhus/is": "0.11.0",
"ajv": "^6.5.3",
"bluebird": "3.5.1",
"body-parser": "^1.18.3",
"boom": "7.2.0",
"client-sessions": "0.8.0",
"cors": "^2.8.5",
"crypto-random-string": "1.0.0",
"express": "^4.16.3",
"firebase-admin": "^5.12.0",
"googleapis": "26.0.1",
"helmet": "^3.13.0",
"inquirer": "6.2.0",
"joi": "17.2.1",
"morgan": "1.9.0",
"pngjs": "3.3.2",
"request": "^2.87.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"babel-loader": "^8.0.0",
"babel-preset-minify": "^0.4.3",
"clean-webpack-plugin": "^0.1.19",
"cssnano": "4.0.5",
"exports-loader": "0.7.0",
"extract-loader": "2.0.1",
"file-loader": "2.0.0",
"glob": "7.1.2",
"html-loader": "0.5.5",
"image-size": "^0.6.3",
"md5-file": "^4.0.0",
"mocha": "5.2.0",
"mocha-webpack": "2.0.0-beta.0",
"mock-require": "3.0.2",
"nock": "9.6.1",
"nyc": "12.0.2",
"postcss-loader": "3.0.0",
"string-replace-webpack-plugin": "^0.1.3",
"supertest": "3.1.0",
"webpack": "4.17.1",
"webpack-cli": "3.1.0",
"webpack-node-externals": "1.7.2"
},
"nyc": {
"all": true,
"include": [
"server/**/*.js"
]
}
}