-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·67 lines (67 loc) · 2.23 KB
/
package.json
File metadata and controls
executable file
·67 lines (67 loc) · 2.23 KB
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
{
"name": "br-api",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"dev": "export DB_NAME=dev && tsc-watch --onSuccess \"node ./dist/src/app.js\"",
"dev:test": "export DB_NAME=test && tsc-watch --onSuccess \"node ./dist/src/app.js\"",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint --fix -c tslint.json 'src/**/*.ts'",
"pretty-quick": "pretty-quick",
"test": "export DB_NAME=TEST && tsc && mocha **/*.spec.js",
"test:dev": "tsc-watch --onSuccess \" mocha **/*.spec.js\"",
"test:coverage": "tsc && nyc --reporter=lcov --reporter=text-summary mocha **/*.spec.js",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BytesRobotics/br-api.git"
},
"author": "Caelin Sutch",
"license": "ISC",
"homepage": "https://github.com/BytesRobotics/br-api",
"dependencies": {
"app-root-path": "^2.2.1",
"body-parser": "^1.18.3",
"config": "^3.0.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.16.4",
"fs": "0.0.1-security",
"jsonwebtoken": "^8.5.0",
"mongodb": "^3.2.2",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.5.0",
"passport-oauth2-middleware": "^1.0.3",
"passport-oauth2-refresh": "^1.1.0",
"swagger-ui-express": "^4.1.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/config": "0.0.36",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/mongodb": "^3.5.2",
"@types/node": "^13.9.2",
"@types/passport": "^1.0.3",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/swagger-ui-express": "^4.1.2",
"chai": "^4.2.0",
"conventional-changelog-cli": "1.3.4",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^7.1.1",
"nodemon": "^1.18.10",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"tsc-watch": "^4.2.3",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
}
}