-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
91 lines (91 loc) · 2.68 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
{
"author": "John Datserakis",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@sendgrid/mail": "7.0.1",
"@types/hapi__joi": "^17.1.2",
"@types/node": "^14.0.13",
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"date-fns": "^2.12.0",
"dotenv": "^8.2.0",
"eslint-config-airbnb": "^18.1.0",
"faker": "^4.1.0",
"fs-extra": "^9.0.0",
"install": "^0.13.0",
"ioredis": "^4.16.2",
"jest": "^25.3.0",
"jsonwebtoken": "^8.2.2",
"kcors": "^2.2.1",
"knex": "^0.20.15",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-json-error": "^3.1.2",
"koa-ratelimit": "^4.1.1",
"koa-router": "^8.0.8",
"koa-useragent": "^4.0.0",
"log4js": "^6.2.0",
"mysql": "^2.15.0",
"npm": "^6.14.5",
"pm2": "^4.3.0",
"randexp": "^0.5.3"
},
"description": "This is a simple SPA built using Koa as the backend, Vue as the first frontend, and React as the second frontend. Features MySQL integration, user authentication, CRUD note actions, and async/await.",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^26.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/kcors": "^2.2.3",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json-error": "^3.1.2",
"@types/koa-router": "^7.4.1",
"@typescript-eslint/parser": "^3.3.0",
"babel-core": "^6.26.3",
"babel-jest": "^26.0.1",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.3",
"prettier": "^2.0.4",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"homepage": "https://github.com/johndatserakis/koa-vue-notes-api#readme",
"keywords": [
"koa",
"koa2",
"api",
"boilerplate",
"vue",
"react",
"spa",
"backend",
"jwt",
"pm2",
"mysql",
"database"
],
"license": "MIT",
"name": "koa-vue-notes-api",
"private": true,
"scripts": {
"build": "tsc",
"clean": "npm cache clean --force",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"test": "NODE_ENV=testing jest --forceExit --config ./jest.config.js",
"watch": "NODE_ENV=development nodemon --watch src -e js,jsx,ts,tsx --exec ts-node ./src/app.ts"
},
"version": "4.0.0"
}