-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "book-aggregator-backend",
"version": "1.1.0",
"description": "",
"main": "app.js",
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"axios": "^1.3.3",
"babel-cli": "^6.26.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"fast-xml-parser": "^4.1.2",
"lodash": "^4.17.21",
"mongodb": "^5.0.1",
"mongoose": "^6.9.2",
"nodemon": "^2.0.20"
},
"devDependencies": {
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=production node src/index.js",
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"lint": "eslint src"
},
"author": "",
"license": "MIT"
}