-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"name": "casual-sports",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "NODE_ENV='test' jest --forceExit --detectOpenHandles --coverage --runInBand",
"test:coverage": "jest --forceExit --silent --coverage",
"start": "node src/index.js",
"pretest": "eslint --ignore-path .gitignore .",
"dev": "nodemon src/index.js"
},
"jest": {
"transform": {}
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-15/casual-sports.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-15/casual-sports/issues"
},
"homepage": "https://github.com/fac-15/casual-sports#readme",
"devDependencies": {
"jest": "^23.6.0",
"node-mocks-http": "^1.7.3",
"nodemon": "^1.18.9",
"supertest": "^3.3.0"
},
"dependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"dateformat": "^3.0.3",
"env2": "^2.2.2",
"eslint": "^5.12.0",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^3.4.0",
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"fs": "0.0.1-security",
"handlebars-helpers": "^0.10.0",
"i": "^0.3.6",
"jsonwebtoken": "^8.4.0",
"npm": "^6.6.0",
"pg": "^7.8.0",
"pg-promise": "^8.5.4",
"regenerator-runtime": "^0.13.1",
"serve-favicon": "^2.5.0",
"url": "^0.11.0"
}
}