-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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
{
"name": "mean",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run start:dev",
"start:dev": "NODE_ENV=development node server.js",
"start:test": "NODE_ENV=test node server.js",
"start:prod": "NODE_ENV=production node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RoyLH/MEAN.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RoyLH/MEAN/issues"
},
"homepage": "https://github.com/RoyLH/MEAN#readme",
"dependencies": {
"@superfaceai/passport-twitter-oauth2": "^1.2.4",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-session": "^1.18.0",
"https-proxy-agent": "^7.0.4",
"method-override": "^3.0.0",
"mongoose": "^8.3.4",
"morgan": "^1.10.0",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"socket.io": "^4.7.5"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-concurrent": "~1.0.0",
"grunt-contrib-csslint": "~0.2.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-env": "~0.4.1",
"grunt-karma": "^4.0.2",
"grunt-mocha-test": "~0.11.0",
"grunt-node-inspector": "^1.0.0",
"grunt-nodemon": "~0.3.0",
"grunt-protractor-runner": "~1.1.4",
"jasmine-core": "^3.1.0",
"karma": "^2.0.2",
"karma-jasmine": "^2.0.0",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.4",
"selenium-webdriver": "^4.21.0",
"should": "^13.2.1",
"supertest": "^3.1.0"
}
}