-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 756 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 756 Bytes
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
{
"name": "typeorm-sql-mongo",
"version": "1.0.0",
"description": "Testing typeorm with mongo, mysql and koa",
"main": "index.js",
"scripts": {
"test": "find ./src/**/tests -name '*.test.js' | xargs mocha -R spec",
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "yes"
},
"author": "Jivan Ghadage <jivanghadage@gmail.com>",
"license": "ISC",
"dependencies": {
"koa": "^2.5.1",
"koa-router": "^7.4.0",
"mysql": "^2.15.0",
"typeorm": "^0.2.5"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"mocha": "^5.1.1",
"supertest": "^3.1.0"
}
}