forked from WoWAnalyzer/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.09 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
{
"name": "wowanalyzer-server",
"description": "The server behind WoWAnalyzer.com.",
"repository": "https://github.com/WoWAnalyzer/server",
"license": "AGPL-3.0-or-later",
"main": "src/index.js",
"scripts": {
"start": "npm run migrate && nodemon --exec babel-node src/index.js",
"migrate": "node --harmony node_modules/sequelize-cli/lib/sequelize db:migrate --config src/config/database.js",
"test": "jest --watchAll",
"test:once": "jest",
"build": "babel -d build --ignore __mocks__ src && node ./config/postbuild.js",
"serve": "node --harmony node_modules/sequelize-cli/lib/sequelize db:migrate --config build/config/database.js && node --harmony build/index.js",
"blizztos": "babel-node ./scripts/BlizzardTosDelete.js"
},
"dependencies": {
"@sentry/node": "^5.0.0-rc.1",
"agentkeepalive": "^4.0.2",
"babel-plugin-inline-dotenv": "^1.2.2",
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^7.0.0",
"es6-error": "^4.1.1",
"express": "^4.16.4",
"express-http-proxy": "^1.5.1",
"mariadb": "^2.0.3",
"nanoid": "^2.0.1",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-patreon": "^1.0.1",
"prom-client": "^11.2.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"sequelize": "^5.15.1",
"sequelize-cli": "^5.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"jest": "^24.5.0",
"nodemon": "^1.18.10"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/build/"
],
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest"
},
"modulePaths": [
"src"
]
}
}