forked from Technigo/project-mongo-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 882 Bytes
/
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
{
"name": "express-api-starter",
"version": "1.0.0",
"description": "Starter project to get up and running with express quickly",
"scripts": {
"start": "babel-node server.js",
"dev": "nodemon server.js --exec babel-node",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/helper-compilation-targets": "^7.16.3",
"@babel/node": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-list-endpoints": "^6.0.0",
"mongoose": "^5.13.13",
"nodemon": "^2.0.2"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-import": "^0.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0"
}
}