-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "card-validation-api",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": "14.15.1"
},
"scripts": {
"clean": "rimraf dist",
"test": "jest",
"dev": "nodemon -L --exec babel-node ./src/index.js",
"start": "node ./build/index.js ",
"build": "rm -rf ./build &&babel -d ./build ./src -s",
"prod": "npm-run-all clean build",
"format": "prettier --write \"./**/*.js\""
},
"author": "Femi Lawal",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.14.6",
"body-parser": "^1.20.3",
"debug": "^4.3.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-xml-bodyparser": "^0.3.0",
"morgan": "^1.10.0",
"winston": "^3.14.2",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"jest": "^29.7.0",
"nodemon": "^2.0.9",
"prettier": "^2.3.2",
"rimraf": "^3.0.2"
}
}