-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.33 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
{
"name": "groupbetlogger",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon",
"dev": "nodemon ./index.js",
"migrate": "npx sequelize-cli db:migrate",
"test:lint": "standard",
"test:unit": "mocha test",
"test": "npm run test:lint && npm run test:unit"
},
"keywords": [],
"author": "Lee Gordon, Scott Dormand, John Watson",
"license": "ISC",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.1",
"node-env-run": "^3.0.2",
"nodemon": "^2.0.15",
"supertest": "^4.0.2"
},
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"cookie-parser": "^1.4.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"express-session": "^1.17.0",
"fast-csv": "^4.1.3",
"googleapis": "^97.0.0",
"lint": "^0.7.0",
"moment": "^2.27.0",
"morgan": "^1.9.1",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5",
"session-file-store": "^1.2.0",
"standard": "^16.0.3"
},
"standard": {
"globals": [
"describe",
"beforeEach",
"expect",
"test",
"afterEach",
"jest",
"beforeAll",
"afterAll",
"it"
]
}
}