-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 2.66 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "bertly",
"version": "1.0.0",
"description": "Bitly, but for Bert.",
"engines": {
"node": "^12.0.0",
"npm": "^6.0.0"
},
"main": "index.js",
"scripts": {
"dev": "npm run dev:dynamo & npm run dev:app",
"dev:app": "nodemon bootstrap/local.js",
"dev:dynamo": "node bootstrap/local-dynamo.js",
"test": "jest --watch --runInBand",
"test:ci": "jest --ci --runInBand",
"compile": "babel src -d build/src && babel config -d build/config"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": true
}
}
]
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"testEnvironment": "node",
"globalSetup": "./jest.setup.js",
"setupFilesAfterEnv": [
"./jest.beforeAll.js"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"watchPathIgnorePatterns": [
"<rootDir>/bootstrap/"
]
},
"nodemonConfig": {
"execMap": {
"js": "babel-node -r dotenv/config"
},
"watch": [
"src",
"config",
"package.json",
"package-lock.json",
".env"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"repository": {
"type": "git",
"url": "https://github.com/DoSomething/bertly"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@types/jest": "^25.2.2",
"babel-jest": "^26.0.1",
"chalk": "^2.4.2",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-watch-typeahead": "^0.6.0",
"local-dynamo": "^0.6.0",
"nodemon": "^2.0.4",
"pg": "^8.2.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"supertest": "^4.0.2"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@sindresorhus/is": "^2.1.1",
"@slynova/flydrive": "^1.0.0-0",
"aws-sdk": "^2.677.0",
"aws-serverless-express": "^3.3.8",
"aws-xray-sdk": "^3.0.1",
"body-parser": "^1.19.0",
"callsite-record": "^4.1.3",
"cli-table": "^0.3.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dynamoose": "^2.7.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-jwt": "^6.0.0",
"gen-readlines": "^0.2.0",
"hashids": "^2.2.1",
"heroku-logger": "^0.3.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"normalize-url": "^5.3.1",
"openid-client": "^3.15.1",
"p-memoize": "^4.0.0",
"redis": "^3.1.1",
"stringify-object": "^3.3.0",
"uuid": "^8.0.0"
}
}