-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"author": "yo",
"license": "ISC",
"name": "node-es6-sample-app",
"version": "1.0.0",
"description": "",
"main": "app.js",
"keywords": [],
"scripts": {
"dev": "nodemon --exec babel-node src/app.js",
"build": "babel src --out-dir dist",
"start": "npm run build && node dist/app.js",
"test": "npm run build && nyc mocha dist/tests/test.js"
},
"repository": {
"type": "git",
"url": "https://github.gatech.edu/jvila6/node-es6-sample-app.git"
},
"dependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"cookie-parser": "~1.4.3",
"debug": "^2.6.9",
"express": "^4.16.4",
"express-validator": "^6.5.0",
"http-errors": "^1.6.3",
"imagemagick": "^0.1.3",
"is-image-url": "^1.1.8",
"jade": "^1.11.0",
"jsonwebtoken": "^8.5.1",
"mochai": "^0.2.5",
"mongoose": "^5.9.15",
"morgan": "^1.9.1",
"npm-run-all": "^4.1.5",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"path": "^0.12.7",
"request": "^2.88.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"chai-http": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.0",
"expect": "^26.0.1",
"mocha": "^7.2.0",
"nodemon": "^2.0.4",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"superagent": "^5.2.2",
"supertest": "^4.0.2",
"swagger": "0.7.5",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4"
}
}