generated from CodeForBaltimore/ProjectTemplate
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
99 lines (99 loc) · 2.6 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "bmore-responsive",
"version": "1.3.3",
"description": "An API-driven CRM (Civic Relationship Management) system.",
"main": "src/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"test": "nyc mocha --require @babel/register --require @babel/polyfill \"src/tests/**/*.spec.js\" --exit",
"lint": "eslint src/",
"db-create": "sequelize db:migrate",
"db-delete": "sequelize db:migrate:undo:all",
"db-seed": "sequelize db:seed:all",
"db-unseed": "sequelize db:seed:undo:all",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeForBaltimore/Bmore-Responsive.git"
},
"keywords": [
"emergency",
"response"
],
"author": "Code for Baltimore",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CodeForBaltimore/Bmore-Responsive/issues"
},
"homepage": "https://github.com/CodeForBaltimore/Bmore-Responsive#readme",
"dependencies": {
"@babel/core": "7.12.17",
"@babel/node": "7.17.10",
"@types/bluebird": "^3.5.36",
"ansi-regex": "^6.0.1",
"browserslist": "^4.20.3",
"casbin": "4.7.2",
"casbin-sequelize-adapter": "2.3.2",
"chai": "^4.3.6",
"complexity": "0.0.6",
"cors": "2.8.5",
"crypto": "1.0.1",
"dotenv": "8.2.0",
"express": "4.18.1",
"express-rate-limit": "5.2.6",
"express-request-id": "1.4.1",
"helmet": "3.23.3",
"json2csv": "^5.0.7",
"jsonwebtoken": "8.5.1",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"morgan": "1.10.0",
"nodemailer": "^6.7.3",
"nodemon": "2.0.16",
"nunjucks": "^3.2.3",
"pg": "^8.7.3",
"random-words": "^1.1.2",
"sequelize": "^6.17.0",
"sequelize-typescript": "^2.0.0",
"snyk": "^1.920.0",
"supertest": "4.0.2",
"swagger-ui-express": "^4.3.0",
"tls": "0.0.1",
"uuid4": "1.1.4",
"validator": "^13.7.0",
"webpack": "^5.70.0"
},
"devDependencies": {
"@babel/compat-data": "7.8.6",
"@babel/polyfill": "7.8.3",
"@babel/preset-env": "7.17.10",
"@babel/register": "7.17.7",
"all-contributors-cli": "6.14.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.5",
"chakram": "^1.5.0",
"codecov": "3.7.2",
"eslint": "^8.14.0",
"eslint-plugin-mocha": "^10.0.4",
"nyc": "15.1.0",
"sequelize-cli": "^6.4.1"
},
"resolutions": {
"@babel/preset-env": "7.17.10"
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js"
]
},
"snyk": true
}