forked from axe-api/axe-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.72 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
{
"name": "axe-api",
"version": "0.14.1",
"description": "AXE API is a simple tool which has been created based on Express and Knex.js to create Rest APIs quickly.",
"main": "index.js",
"type": "module",
"directories": {
"test": "tests"
},
"author": "Özgür Adem Işıklı <[email protected]>",
"license": "ISC",
"scripts": {
"test": "jest --runInBand",
"test:dev": "jest --watch",
"lint": "eslint src/**",
"lint:watch": "esw --watch --color",
"test:integration:mysql8": "cd ./tests/integrations && node index.js mysql8",
"test:integration:mysql57": "cd ./tests/integrations && node index.js mysql57",
"test:integration:postgres": "cd ./tests/integrations && node index.js postgres"
},
"dependencies": {
"change-case": "^4.1.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"knex": "^0.95.8",
"knex-paginate": "^2.3.0",
"knex-schema-inspector": "^1.5.13",
"pluralize": "^8.0.0",
"validatorjs": "^3.22.1"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.8",
"@babel/runtime": "^7.14.8",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-minify": "^0.5.1",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-unicorn": "^33.0.1",
"eslint-watch": "^7.0.0",
"jest": "^27.0.6",
"mysql": "^2.18.1",
"nodemon": "^2.0.12",
"pg": "^8.6.0",
"set-value": ">=4.0.0",
"sqlite3": "^5.0.2"
}
}