-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "bible_trivia",
"version": "0.4.4",
"description": "Trivia game for the Bible",
"license": "MIT",
"author": "Rascal_Two <therealrascaltwo@gmail.com>",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js --watch server.js --watch server/",
"pre-commit": "npm-run-all eslint test",
"eslint": "eslint server.js server/ client/index.js test/",
"test": "npm-run-all test-server",
"test-server": "nyc --reporter=html --reporter=text --reporter=text-summary mocha test/*test.js",
"test-server-quick": "mocha test/*test.js"
},
"dependencies": {
"compression": "^1.7.2",
"express": "^4.16.3",
"express-minify": "^1.0.0",
"express-session": "^1.15.6",
"html-minifier": "^4.0.0",
"javascript-obfuscator": "^2.3.0",
"morgan": "^1.9.0",
"npm-run-all": "^4.1.2",
"session-file-store": "^1.2.0",
"sqlite": "^2.9.1",
"uglify-es": "^3.3.9"
},
"devDependencies": {
"chai": "^4.1.2",
"cypress": "^2.1.0",
"nodemon": "^2.0.4",
"eslint": "^4.19.1",
"mocha": "^5.0.5",
"node-fetch": "^2.1.2",
"nyc": "^11.6.0"
}
}