-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.15 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.15 KB
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
{
"name": "crm-cronix-api",
"version": "1.0.0",
"description": "crm-cronix-api",
"main": "server.js",
"scripts": {
"run": "./node_modules/pm2/bin/pm2 start ./server.js",
"run:dev": "./node_modules/pm2/bin/pm2 start ecosystem.config.js --no-daemon --watch",
"destroy": "./node_modules/pm2/bin/pm2 stop server.js && ./node_modules/pm2/bin/pm2 stop docs.js",
"migrate": "NODE_ENV=database node_modules/sequelize-cli/bin/sequelize db:migrate",
"migrate:undo": "NODE_ENV=database node_modules/sequelize-cli/bin/sequelize db:migrate:undo:all",
"seed": "NODE_ENV=database node_modules/sequelize-cli/bin/sequelize db:seed:all",
"seed:undo": "NODE_ENV=database node_modules/sequelize-cli/bin/sequelize db:seed:undo:all",
"lint": "eslint --ext .js server.js docs.js ./app ./config ./database",
"lintfix": "eslint --ext .js server.js docs.js ./app ./config ./database --fix",
"docs": "./node_modules/pm2/bin/pm2 start ./docs.js",
"docs:dev": "./node_modules/pm2/bin/pm2 start docs.js --no-daemon --watch",
"all": "npm run run & npm run docs"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"api"
],
"author": "crm-cronix-api",
"license": "UNLICENSED",
"homepage": "",
"dependencies": {
"babel-eslint": "^7.1.1",
"bcryptjs": "^2.4.0",
"bluebird": "^3.4.7",
"dotenv": "^2.0.0",
"eslint": "^3.14.1",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-standard": "^2.0.1",
"faker": "^3.1.0",
"jimp": "^0.2.27",
"koa": "^1.2.4",
"koa-better-body": "^3.0.2",
"koa-bodyparser": "^2.3.0",
"koa-cors": "0.0.16",
"koa-jwt": "^1.3.1",
"koa-logger": "^1.3.1",
"koa-router": "^5.4.0",
"koa-static": "^2.0.0",
"live-server": "^1.2.0",
"md5": "^2.2.1",
"mysql": "^2.13.0",
"node-uuid": "^1.4.7",
"nodemailer": "^2.7.2",
"pm2": "^2.3.0",
"promise": "^7.1.1",
"sequelize": "^3.30.0",
"sequelize-cli": "^2.5.1",
"sequelize-restful": "^0.4.3",
"validator": "^5.7.0"
}
}