-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.83 KB
/
package.json
File metadata and controls
59 lines (59 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
{
"name": "fire-polls-back",
"version": "1.0.0",
"description": "firepolls.com back end REST API and Socket.io",
"main": "index.js",
"scripts": {
"test": "jest -i --coverage",
"test-w": "jest -i --coverage --watch",
"test-s": "jest -i --coverage router-session.test.js",
"lint": "eslint .",
"start": "node index.js",
"dbon": "mkdir -p ./db && mongod --dbpath ./db",
"dboff": "killall mongod",
"watch": "nodemon",
"test-simple": "artillery run _load-test/http/simple-load.yml -o _load-test/http/results/simple-report.json && artillery report _load-test/http/results/simple-report.json",
"test-break": "artillery run _load-test/http/break-load.yml -o _load-test/http/results/break-report.json && artillery report _load-test/http/results/break-report.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firepolls/back.git"
},
"keywords": [
"poll",
"quiz",
"test",
"formative",
"data"
],
"author": "Anthony Robinson && Pedja Josifovic && Kerry Nordstrom && Seth Donohue && Robert Reed",
"license": "MIT",
"bugs": {
"url": "https://github.com/firepolls/back/issues"
},
"homepage": "https://github.com/firepolls/back#readme",
"dependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"bcrypt": "^1.0.3",
"cors": "^2.8.4",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"http-errors": "^1.6.2",
"jsonwebtoken": "^8.1.1",
"mongoose": "^5.0.2",
"socket.io": "^2.0.4"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"faker": "^4.1.0",
"jest": "^22.1.4",
"nodemon": "^1.14.12",
"superagent": "^3.8.2"
}
}