-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "nycmesh-api",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"@slack/web-api": "^5.8.0",
"acuityscheduling": "^0.1.9",
"aws-sdk": "^2.575.0",
"cors": "^2.8.5",
"date-fns": "^2.8.1",
"encoding": "^0.1.13",
"express": "5.0.0-alpha.8",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.6.0",
"node-fetch": "^2.6.0",
"pg": "^8.0.0",
"serverless-http": "^2.3.0",
"stripe": "^8.134.0"
},
"devDependencies": {
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.7.0",
"jest": "^26.4.0",
"netlify-lambda": "^1.5.1",
"node-pg-migrate": "^5.9.0",
"prettier": "2.2.1"
},
"scripts": {
"start": "NODE_ENV=development netlify-lambda serve src -c webpack.functions.js",
"build": "netlify-lambda build src -c webpack.functions.js",
"format": "prettier --write .",
"precommit": "yarn format && yarn test",
"los": "node scripts/los.js",
"migrate": "node-pg-migrate --reject-unauthorized false",
"test": "TZ=UTC jest --setupFiles dotenv/config"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}