-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.04 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
{
"name": "klasse-cloud-api",
"version": "0.0.1",
"description": "klasseCloud api",
"license": "LICENSED UNDER MIT",
"readmeFilename": "README.md",
"scripts": {
"start": "babel src --out-dir dist && node dist/index.js",
"build": "rimraf dist && cross-env NODE_ENV=production babel -D src -d dist -s",
"dev": "nodemon src/index.js",
"devServer": "nodemon src/server.js",
"test": "cross-env NODE_ENV=test jest",
"cover": "npm run test -- --coverage",
"lint": "eslint --fix src"
},
"author": {
"name": "KlasseCloud",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/klassecloud/backend.git"
},
"bugs": {
"url": "https://github.com/klassecloud/backend/issues"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.8.6",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/koa": "^2.11.3",
"@types/koa__router": "^8.0.2",
"babel-eslint": "^10.1.0",
"babel-node": "0.0.1-security",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.2.7",
"nodemon": "^2.0.2",
"rimraf": "^3.0.2",
"supertest": "^4.0.2"
},
"dependencies": {
"@hapi/boom": "^9.0.0",
"@koa/cors": "^3.0.0",
"@koa/router": "^8.0.8",
"bcryptjs": "^2.4.3",
"class-validator": "^0.11.0",
"dotenv-extended": "^2.8.0",
"faker": "^4.1.0",
"is-string-and-not-blank": "0.0.2",
"jsonwebtoken": "^8.5.1",
"koa": "^2.11.0",
"koa-better-error-handler": "^3.0.5",
"koa-bodyparser": "^4.3.0",
"koa-oas3": "^0.18.0",
"koa-pino-logger": "^2.1.3",
"mysql": "^2.14.1",
"node-fetch": "^2.6.0",
"oas3-chow-chow": "^0.18.0",
"pg": "^7.18.2",
"pino": "^5.17.0",
"sqlite3": "^4.0.2",
"typeorm": "^0.2.0",
"uuid": "^7.0.3",
"web-push": "^3.4.3"
}
}