-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.11 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
{
"name": "axi-engine",
"description": "Computational Engine for the Axi Platform.",
"license": "MIT",
"version": "0.0.1",
"homepage": "",
"main": "src",
"author": {
"name": "Phoomparin Mano",
"email": "work@phoom.in.th"
},
"contributors": [],
"bugs": {},
"engines": {
"node": "^10.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"start": "yarn dev:watch | yarn dev:run",
"dev:watch": "npx webpack --watch",
"dev:run": "npx nodemon './dist/index.js' --watch './dist'",
"build": "NODE_ENV=PRODUCTION npx webpack"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.6",
"@feathersjs/authentication-jwt": "^2.0.1",
"@feathersjs/authentication-local": "^1.2.1",
"@feathersjs/errors": "^3.3.0",
"@feathersjs/express": "^1.2.0",
"@feathersjs/feathers": "^3.1.3",
"@feathersjs/socketio": "^3.2.0",
"amqplib": "^0.5.2",
"apollo-server-express": "^1.3.6",
"bcrypt": "^2.0.1",
"bcrypt-promised": "^1.0.1",
"compression": "^1.7.2",
"cors": "^2.8.4",
"dauria": "^2.0.0",
"fastest-validator": "^0.6.7",
"feathers-authentication-management": "^2.0.0",
"feathers-blob": "^2.0.1",
"feathers-hooks-common": "^4.11.1",
"feathers-logger": "^0.3.2",
"feathers-objection": "^0.8.0",
"feathers-permissions": "^0.2.1",
"feathers-sync": "^1.0.2",
"fs-blob-store": "^5.2.1",
"graphql": "^0.13.2",
"graphql-constraint-directive": "^1.1.0",
"graphql-depth-limit": "^1.1.0",
"graphql-list-fields": "^2.0.2",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^3.0.2",
"helmet": "^3.12.0",
"ioredis": "^3.2.2",
"joi": "^13.3.0",
"joi-errors-for-forms": "^0.2.6",
"knex": "^0.14.6",
"knex-postgis": "^0.6.0",
"multer": "^2.0.0-alpha.6",
"objection": "^1.1.9",
"pg": "^7.4.3",
"pluralize": "^7.0.0",
"ramda": "^0.25.0",
"retry": "^0.12.0",
"socket.io-redis": "^5.2.0",
"subscriptions-transport-ws": "^0.9.10",
"uws": "^10.148.0",
"validatorjs": "^3.14.2",
"winston": "^3.0.0-rc2"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/core": "^7.0.0-beta.49",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.49",
"@babel/plugin-proposal-export-default-from": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"babel-eslint": "^8.2.2",
"babel-inline-import-loader": "^0.0.5",
"babel-loader": "^8.0.0-beta",
"babel-plugin-inline-import": "^2.0.6",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.0.4",
"nodemon": "^1.17.5",
"prettier": "^1.11.1",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"webpack": "^4.10.2",
"webpack-cli": "^2.0.11"
}
}