-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "example_express_with_es6",
"version": "3.0.0",
"description": "",
"author": "",
"main": "src/server.js",
"scripts": {
"test": "./node_modules/.bin/eslint src",
"dev": "nodemon src/server.js --exec babel-node",
"start": "babel-node src/server.js",
"build": "babel src -d dist",
"prod": "yarn build; node dist/server.js"
},
"license": "ISC",
"engines": {
"node": ">=9 <=12",
"npm": "^5.6.0",
"yarn": "^1.6.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"jwt-simple": "^0.5.6",
"mongoose": "^5.5.5",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"nodemon": "^1.18.11"
}
}