-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
{
"name": "registry",
"version": "1.0.0",
"description": "Lambdas for Martinsen Wedding Registry.",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "eslint '*/**/*.{js,ts}'",
"vercel:dev": "vercel dev",
"load": "ts-node src/scripts/loadDB.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JosephMart/registry.git"
},
"author": "Joseph Martinsen",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/JosephMart/registry/issues"
},
"homepage": "https://github.com/JosephMart/registry#readme",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "12.12.6",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"csv-parse": "^4.15.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^25.5.4",
"prettier": "^2.2.1",
"ts-jest": "^25.5.1",
"ts-node": "8.8.2",
"typescript": "3.8.3"
},
"dependencies": {
"@vercel/node": "^1.9.1",
"google-spreadsheet": "^3.1.15",
"mongodb": "^3.6.4",
"reflect-metadata": "^0.1.10",
"typeorm": "^0.2.31"
}
}