This repository has been archived by the owner on Jan 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
127 lines (127 loc) · 4.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "armory-back",
"version": "3.10.0",
"description": "Backend services for gw2armory",
"main": "index.js",
"private": true,
"scripts": {
"start": "npm run dev:api & npm run dev:fetch",
"db": "./go.sh db",
"dev": "npm run db && npm run start",
"start:docker": "./go.sh start",
"dev:docker": "./go.sh dev",
"fetch": "node ./dist/fetch",
"dev:api": "ENV=local babel-watch ./src/api",
"dev:fetch": "ENV=local babel-watch ./src/fetch",
"api": "node ./dist/api",
"migration": "babel-node node_modules/.bin/sequelize db:migrate",
"deploy": "node ./scripts/deploy",
"build": "babel src --out-dir dist --ignore spec.js,int.js",
"test": "npm run flow && npm run coverage && npm run test:int",
"unit": "mocha \"src/**/*.spec.js\"",
"test:int": "mocha \"src/**/*.int.js\"",
"tdd": "mocha \"src/**/*.spec.js\" --watch",
"tdd:int": "npm run test:int -- --watch",
"lint": "eslint .",
"flow": "flow",
"flowtypes": "flow-typed install --overwrite",
"clean-docker": "./go.sh clean",
"kill": "./go.sh kill",
"mtr-prepare": "npm run db",
"mtr": "ENV=local babel-node ./src/migration/testRun && npm run migration",
"mtr-revert": "ENV=local node_modules/.bin/sequelize db:migrate:undo",
"coverage": "BABEL_ENV=test nyc npm run unit",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"preversion": "npm test",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madou/armory-back.git"
},
"author": "madou",
"license": "ISC",
"bugs": {
"url": "https://github.com/madou/armory-back/issues"
},
"homepage": "https://api.gw2armory.com",
"dependencies": {
"aws-sdk": "^2.106.0",
"axios": "^0.16.2",
"babel-polyfill": "^6.26.0",
"circular-json": "^0.3.3",
"eslint-plugin-mocha": "^4.8.0",
"frozen-moment": "^0.4.0",
"fs": "0.0.2",
"gotta-validate": "^0.2.x",
"gw2itemstats": "^0.0.3",
"lodash": "^4.16.4",
"lodash.assign": "^4.2.0",
"memoizee": "^0.4.9",
"moment": "^2.14.1",
"mysql": "^2.14.1",
"mysql2": "^1.4.0",
"nodemailer": "^2.6.0",
"nodemailer-ses-transport": "^1.4.0",
"password-hash-and-salt": "^0.1.2",
"path": "^0.12.7",
"pretty-error": "^2.1.1",
"promise-throttle": "^0.3.1",
"q": "^1.4.1",
"restify": "^5.1.0",
"restify-cors-middleware": "^1.0.1",
"restify-errors": "^5.0.0",
"restify-oauth2": "https://github.com/mariopeixoto/restify-oauth2",
"sequelize": "^4.8.0",
"sequelize-cli": "^2.8.0",
"serialize-error": "^2.1.0",
"slackbots": "^1.0.2",
"throat": "^4.1.0",
"uuid": "^3.1.0",
"yargs": "^8.0.2"
},
"devDependencies": {
"app-module-path": "^2.1.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"babel-watch": "^2.0.7",
"beanstalkify": "0.0.9",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"changelog-verify": "^1.0.4",
"codecov": "^2.3.0",
"easy-zip": "0.0.4",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-mocha": "^4.8.0",
"flow-bin": "^0.53.1",
"flow-typed": "^2.1.5",
"hash-files": "^1.0.0",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"mustache": "^2.2.0",
"node-cmd": "^3.0.0",
"nodemon": "^1.4.1",
"nyc": "^11.1.0",
"pre-commit": "^1.2.2",
"proxyquire": "^1.7.10",
"run-sequence": "^2.1.0",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0",
"sqlite3": "^3.1.9",
"version-changelog": "^2.1.0"
},
"pre-commit": [
"test"
]
}