-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "comp4770",
"version": "1.0.0",
"description": "COMP 4770 Project - The Knight Before",
"main": "index.js",
"scripts": {
"test": "jest --collect-coverage",
"build": "./tools/build",
"prepublish": "npm run build",
"flow": "flow",
"lint": "node_modules/eslint/bin/eslint.js .",
"server": "./tools/run-dev"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 0
}
},
"modulePathIgnorePatterns": [
"lib/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/eeshangarg/COMP4770.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/eeshangarg/COMP4770/issues"
},
"homepage": "https://github.com/eeshangarg/COMP4770#readme",
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"eslint": "^5.13.0",
"eslint-plugin-flowtype": "^3.2.1",
"flow-bin": "^0.92.0",
"flow-remove-types": "^1.2.3",
"jest": "^24.3.1"
},
"dependencies": {
"@gamestdio/clock": "^1.1.9",
"bcryptjs": "^2.4.3",
"express": "^4.16.4",
"flatstr": "^1.0.9",
"flow": "^0.2.3",
"mongodb": "^3.1.13",
"nodemailer": "^5.1.1",
"npm": "^6.9.0",
"shortid": "^2.2.14",
"uglifyjs-folder": "^1.5.1",
"ws": "^6.2.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
}
}