-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2 KB
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
{
"name": "node-oracle-api",
"version": "1.0.0",
"description": "express based rest api connecting to an oracle db",
"main": "src/index.js",
"scripts": {
"start": "nodemon --max-old-space-size=2048 src/index.js --exec babel-node",
"build": "babel src -d dist",
"start:production": "npm run build && NODE_ENV=production node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "xo",
"lint:fix": "xo --fix",
"precommit": "npm run lint:fix && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/neccar/node-oracle-api.git"
},
"keywords": [
"node",
"oracle",
"express",
"rest",
"nodejs"
],
"author": "Ahmet Neccaroglu",
"license": "ISC",
"bugs": {
"url": "https://github.com/neccar/node-oracle-api/issues"
},
"homepage": "https://github.com/neccar/node-oracle-api#readme",
"dependencies": {
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@types/express": "^4.11.1",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-bearer-token": "^2.2.0",
"moment": "^2.22.1",
"morgan": "^1.9.0",
"oracledb": "^2.3.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.6.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"husky": "^0.14.3",
"jest": "^23.5.0",
"node-mocks-http": "^1.7.0",
"nodemon": "^1.18.2",
"regenerator-runtime": "^0.12.1",
"supertest": "^3.3.0",
"xo": "^0.21.1"
}
}