This repository has been archived by the owner on Feb 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.75 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
{
"name": "MickeyPurse",
"version": "1.0.0",
"description": "",
"scripts": {
"lint": " npx eslint src/**/*.js --fix",
"test": "npx mocha -r babel-register --recursive",
"dev": "NODE_ENV=development nodemon src/index.js --exec babel-node",
"build": "node_modules/babel-cli/bin/babel.js src -d dist && cp -a src/schemas dist/",
"start": "node_modules/pm2/bin/pm2 start dist/index.js --name nft-mickey",
"stop": "node_modules/pm2/bin/pm2 delete nft-mickey",
"restart": "npm run stop && npm run start"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/mir/nft-mickey-backend.git"
},
"author": "",
"license": "UNLICENSED",
"dependencies": {
"bluebird": "^3.5.2",
"chai": "^4.2.0",
"crypto-js": "^3.1.9-1",
"jsonschema": "^1.2.4",
"jsonwebtoken": "^8.3.0",
"koa": "^2.5.3",
"koa-body": "^4.0.4",
"koa-cors": "0.0.16",
"koa-json-body": "^5.3.0",
"koa-logger": "^3.2.0",
"lodash": "^4.17.11",
"log4js": "^3.0.6",
"moment": "^2.22.2",
"mongoose": "^5.3.7",
"path-to-regexp": "^2.4.0",
"query-string": "^6.2.0",
"randomstring": "^1.1.5",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"secure-random": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"pm2": "^3.2.2"
}
}