-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "easy-crud",
"version": "1.0.0",
"description": "quickly add crud routes to your application",
"main": "index.js",
"scripts": {
"start:example:mongo": "tsc && node dist/examples/MongoDbExample/server.js",
"migrate": "knex migrate:latest",
"startdev": "tsc && node dist/examples/KnexSqliteExample/server.js",
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aliotta/easyCRUD.git"
},
"keywords": [
"node",
"knex",
"crud",
"express"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aliotta/easyCRUD/issues"
},
"homepage": "https://github.com/aliotta/easyCRUD#readme",
"dependencies": {
"@types/express": "^4.17.2",
"@types/knex": "^0.16.1",
"@types/mongodb": "^3.5.9",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"knex": "^0.20.9",
"mongodb": "^3.5.6"
},
"devDependencies": {
"ts-jest": "^25.2.0",
"jest": "^25.1.0",
"sqlite3": "^4.1.1"
}
}