-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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
{
"name": "disciples-christian-church",
"version": "1.0.0",
"description": "Database application for members of the Disciples Christian Church",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "jest",
"testDev": "jest --watchAll --verbose",
"testOpenHandles": "jest --detectOpenHandles",
"initdb": "node initialize_database.js",
"automationtest": "robot __robot__"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DLSU-STSWENG-Team-Heroku/STSWENG-Heroku.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DLSU-STSWENG-Team-Heroku/STSWENG-Heroku/issues"
},
"homepage": "https://github.com/DLSU-STSWENG-Team-Heroku/STSWENG-Heroku#README",
"standard": {
"ignore": [
"/public"
]
},
"dependencies": {
"async": "^3.2.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"chart.js": "^3.6.2",
"dotenv": "^10.0.0",
"electron-log": "^4.4.1",
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"express-session": "^1.17.2",
"express-validator": "^6.12.1",
"fs-extra": "^10.0.0",
"knex": "^0.95.14",
"memorystore": "^1.6.6",
"moment": "^2.29.1",
"mysql2": "^2.3.3",
"nocache": "^3.0.1",
"prompt": "^1.2.1",
"validator": "^13.6.0"
},
"devDependencies": {
"eslint": "^8.3.0",
"jest": "^27.3.1",
"nodemon": "^2.0.12",
"sinon": "^12.0.1",
"standard": "^16.0.3",
"supertest": "^6.1.6"
}
}