-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.83 KB
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
{
"name": "nodejs-course-project",
"version": "1.0.0",
"description": "Course project for the 'Web apps with Node.js' course at Telerik Academy",
"main": "index.js",
"repository": "https://github.com/Team-Express-1/nodejs-course-project.git",
"author": "Ivan Shtarbanov <haifischy91@gmail.com>",
"license": "MIT",
"scripts": {
"scrap": "gulp get-movies",
"start": "node server.js",
"test": "gulp test",
"dev-server": "./node_modules/.bin/nodemon server.js",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha tests/unit-tests/**/*.js",
"eslint-check": "./node_modules/.bin/eslint .",
"eslint-fix": "./node_modules/.bin/eslint --fix ."
},
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.17.2",
"bootstrap": "^3.3.7",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"express": "^4.15.3",
"express-session": "^1.15.3",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.1",
"gulp-sync": "^0.1.4",
"gulp-uglify": "^3.0.0",
"gulp-watch": "^4.3.11",
"jquery": "^3.2.1",
"jquery-ui": "^1.12.1",
"jsdom": "^11.1.0",
"lodash": "^4.17.4",
"mongodb": "^2.2.29",
"node-fetch": "^1.7.1",
"node-tweet-stream": "^2.0.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pug": "^2.0.0-rc.2",
"sha-1": "^0.1.1",
"socket.io": "^2.0.3",
"toastr": "^2.1.2"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"chai": "^4.0.2",
"chromedriver": "^2.31.0",
"eslint": "^4.1.1",
"eslint-config-google": "^0.8.0",
"gulp-eslint": "^4.0.0",
"gulp-istanbul": "^1.1.2",
"gulp-mocha": "3.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"selenium-webdriver": "^3.5.0",
"sinon": "^2.3.8",
"supertest": "^3.0.0"
}
}