forked from johndatserakis/koa-vue-notes-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.03 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
{
"name": "koa-vue-notes-api",
"version": "1.2.7",
"description": "A SPA using Koa as the backend and Vue as the frontend.",
"author": "John Datserakis",
"private": true,
"scripts": {
"watch": "NODE_ENV=development nodemon app.js --exec",
"test": "NODE_ENV=testing jest --forceExit",
"build": "NODE_ENV=production babel src -d build && npm run pretty",
"pretty": "prettier --write --print-width 80 --single-quote --trailing-comma es5 --tab-width 4 --no-semi 'src/**/*.js' 'tests/**/*.js'",
"start-production": "NODE_ENV=production pm2 start ecosystem.json",
"clean": "npm cache clean --force"
},
"license": "MIT",
"homepage": "https://github.com/johndatserakis/koa-vue-notes-api#readme",
"dependencies": {
"@sendgrid/mail": "6.0.0",
"bcrypt": "^1.0.2",
"date-fns": "^1.28.5",
"dotenv": "^4.0.0",
"faker": "^4.1.0",
"fs-extra": "^4.0.0",
"install": "^0.10.1",
"ioredis": "^3.1.1",
"jest": "^20.0.4",
"joi": "^10.6.0",
"jsonwebtoken": "^7.4.1",
"kcors": "^2.0.0",
"knex": "^0.13.0",
"koa": "^2.0.0-alpha.3",
"koa-bodyparser": "^3.0.0",
"koa-json-error": "^3.1.2",
"koa-ratelimit": "^4.0.0",
"koa-router": "^7.0.1",
"koa-useragent": "^1.0.0",
"log4js": "^2.2.0",
"mysql": "^2.14.1",
"npm": "^5.3.0",
"pm2": "^2.6.1",
"randexp": "^0.4.5"
},
"devDependencies": {
"axios-mock-adapter": "^1.9.0",
"babel-cli": "^6.5.1",
"babel-polyfill": "^6.5.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.9.0",
"nodemon": "^1.9.2",
"prettier": "^1.5.3",
"supertest": "^1.2.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions",
"safari >= 7"
]
}
}
]
]
},
"keywords": [
"koa",
"koa2",
"api",
"boilerplate",
"vue",
"spa",
"backend",
"jwt",
"pm2",
"mysql",
"database"
],
"jest": {
"testEnvironment": "node"
}
}