-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.37 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
{
"name": "szery-api",
"version": "1.0.0",
"description": "Szery project",
"main": "index.js",
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"clean": "rimraf build/bundle.js",
"translations": "rimraf messages/* & node --experimental-modules scripts/fetchTranslations.js",
"db": "sequelize",
"db:migrate": "sequelize db:migrate",
"db:migrate:undo": "sequelize db:migrate:undo",
"db:migrate:new": "sequelize migration:generate",
"dev:run": "webpack --config ./webpack.config.js --watch",
"prod": "npm-run-all clean prod:build prod:run",
"prod:run": "node build/bundle.js",
"prod:build": "webpack --config ./webpack.production.config.js -p --env production"
},
"dependencies": {
"@koa/cors": "^2.2.2",
"@types/axios": "^0.14.0",
"@types/bcrypt-nodejs": "0.0.30",
"@types/http-errors": "^1.6.2",
"@types/koa": "^2.0.49",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json": "^2.0.18",
"@types/koa-passport": "^4.0.2",
"@types/koa-router": "^7.0.42",
"@types/passport": "^1.0.1",
"@types/validate.js": "^0.11.0",
"aws-sdk": "^2.307.0",
"axios": "^0.19.0",
"babel-polyfill": "^6.26.0",
"bcrypt-nodejs": "0.0.3",
"dotize": "^0.2.0",
"form-data": "^2.3.2",
"http-errors": "latest",
"http-status-codes": "^1.3.0",
"i18n-2": "^0.7.2",
"intl": "^1.2.5",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-busboy": "^1.1.1",
"koa-compose": "^4.1.0",
"koa-i18n": "^2.1.0",
"koa-json": "^2.0.2",
"koa-locale": "^1.3.0",
"koa-onerror": "^4.1.0",
"koa-passport": "^4.1.0",
"koa-route": "^3.2.0",
"koa-router": "^7.4.0",
"koa-session": "^5.8.2",
"lodash": "^4.17.15",
"mysql2": "^1.5.3",
"node-mailjet": "^3.2.1",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-json": "^1.2.0",
"sequelize": "^4.44.3",
"uuid": "^3.3.2",
"validate.js": "^0.12.0"
},
"devDependencies": {
"@types/sequelize": "^4.28.4",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"awesome-typescript-loader": "^5.2.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-typescript": "^0.14.0",
"nodemon": "^1.12.0",
"nodemon-webpack-plugin": "^4.0.8",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.2",
"sequelize-cli": "^5.5.1",
"ts-loader": "^6.0.4",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}