-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
58 lines (58 loc) · 1.8 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
{
"name": "resquel",
"version": "2.1.0-rc.2",
"description": "Easily convert a SQL database into a REST API using Express.js.",
"main": "./lib/resquel.js",
"types": "./lib/resquel.d.ts",
"scripts": {
"clean": "rm -rf ./lib",
"clean:build": "yarn clean; yarn build",
"build": "tsc -p tsconfig-build.json",
"test": "yarn test:mysql; yarn test:mssql; yarn test:postgresql",
"test:mysql": "mocha -r ts-node/register --exit -t 20000 -b test/mysql.ts",
"test:mssql": "mocha -r ts-node/register --exit -t 20000 -b test/mssql.ts",
"test:postgresql": "mocha -r ts-node/register --exit -t 20000 -b test/postgresql.ts",
"prepare": "yarn clean:build"
},
"author": "form.io",
"license": "ISC",
"dependencies": {
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.15.0",
"debug": "^4.3.4",
"express": "^4.17.1",
"knex": "^2.4.2",
"lodash": "^4.11.1",
"method-override": "^3.0.0",
"mssql": "^9.1.1",
"mysql": "^2.18.1",
"pg": "^8.10.0",
"prettier": "^2.8.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/body-parser": "^1.19.0",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.17",
"@types/faker": "^6.6.9",
"@types/knex": "^0.16.1",
"@types/lodash": "^4.14.168",
"@types/method-override": "^0.0.32",
"@types/mocha": "^10.0.1",
"@types/mssql": "^8.1.2",
"@types/mysql": "^2.15.17",
"@types/node": "^18.15.11",
"@types/pg": "^8.6.6",
"@types/supertest": "^2.0.10",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"mocha": "^10.2.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}