-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 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": "quizzipedia",
"version": "1.0.0",
"description": "Simple survey system",
"main": "server.js",
"dependencies": {
"angular": "^1.5.6",
"async": "^2.0.0-rc.6",
"body-parser": "^1.15.1",
"cookie-parser": "^1.4.1",
"express": "^4.13.4",
"express-session": "^1.13.0",
"glob": "^7.0.3",
"mime": "^1.3.4",
"mkdirp": "^0.5.1",
"mongoose": "^4.4.14",
"morgan": "^1.7.0",
"multer": "^1.1.0",
"nodemailer": "^2.4.1",
"randomstring": "^1.1.5",
"request": "^2.72.0"
},
"devDependencies": {
"angular-mocks": "^1.5.6",
"jasmine-core": "^2.4.1",
"jasmine-node": "^1.14.5",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha": "^1.0.1",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^2.5.3",
"mocha-mongoose": "^1.2.0",
"should": "^9.0.0"
},
"scripts": {
"start": "node config/superadmin.js && node server.js",
"foreverStart": "node config/superadmin.js && forever start server.js",
"foreverStop": "forever stop server.js",
"pre-test": "npm install",
"test": "npm run testDb && npm run testKarma",
"testDb": "node node_modules/mocha/bin/mocha --colors --recursive tests/*.db.js",
"testKarma": "karma start karma.conf.js",
"clearUpload": "rm upload upload_tmp -f -r -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devsoft91/Quizzipedia.git"
},
"keywords": [
"nodejs",
"angularjs",
"expressjs",
"mongodb"
],
"author": "Vault-Tech",
"license": "MIT",
"bugs": {
"url": "https://github.com/devsoft91/Quizzipedia/issues"
},
"homepage": "https://github.com/devsoft91/Quizzipedia#readme"
}