-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.31 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": "example_express_with_es6",
"version": "2.0.0",
"description": "",
"author": "",
"main": "src/server.js",
"scripts": {
"test": "mocha --require @babel/register ./test --exit",
"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 <=10",
"npm": "^5.6.0",
"yarn": "^1.6.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^6.2.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"jwt-simple": "^0.5.5",
"mongoose": "^5.4.2",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/register": "^7.0.0",
"babel-eslint": "^8.2.3",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"mocha": "^5.2.0",
"nodemon": "^1.17.3",
"supertest": "^3.4.1"
}
}