-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "node-rest-api",
"version": "1.0.0",
"description": "Node Rest API for Connecting MSSQL & MYSQl Server",
"main": "src/server.js",
"scripts": {
"start": "nodemon --exec babel-node --inspect src/server.js",
"prebuild": "rimraf dist",
"build": "npm run lint && babel src --out-dir dist && npm run copy-to-dist",
"serve": "node dist/server.js",
"lint": "eslint src --ext .js",
"prettier": "prettier --write src/**/*.js",
"copy-to-dist": "copyfiles --up 1 src/.env dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"mssql": "^6.2.3",
"mysql": "^2.18.1",
"swagger-ui-express": "^4.1.4",
"tedious": "^8.3.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"babel-eslint": "^10.1.0",
"copyfiles": "^2.4.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"pretty-quick": "^2.0.2",
"rimraf": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}