-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
68
69
70
71
{
"name": "video-journal",
"version": "1.0.0",
"description": "To be the best way for students to get feedback on video journals.",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"dev": "nodemon --exec yarn restart",
"test": "NODE_ENV=test jest --forceExit --detectOpenHandles --silent",
"test-routes": "yarn test -t router",
"test-models": "yarn test -t model",
"test-controllers": "yarn test -t controllers",
"test-auth": "yarn test -t Authentication:",
"restart": "rimraf dist && yarn build && yarn start",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VideoJournal/BE.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/VideoJournal/BE/issues"
},
"homepage": "https://github.com/VideoJournal/BE#readme",
"dependencies": {
"await-to-js": "^2.1.1",
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cuid": "^2.1.8",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.8.7",
"morgan": "^1.9.1",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"validator": "^12.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"jest": "^24.9.0",
"mock-req-res": "^1.1.4",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/test-db-setup.js",
"testPathIgnorePatterns": [
"dist/"
],
"restoreMocks": true
}
}