-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.75 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
{
"name": "pizzabase",
"version": "0.0.1",
"description": "Pizza to the Polls order tracking service",
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^8.10.64",
"ava": "^3.12.1",
"csv-parser": "^2.3.3",
"dotenv": "^8.2.0",
"glob": "^7.1.6",
"jest": "^26.4.2",
"jest-fetch-mock": "^3.0.3",
"node-mocks-http": "^1.9.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"serverless-domain-manager": "^5.0.0",
"serverless-plugin-typescript": "^1.1.9",
"ts-jest": "^26.4.1",
"ts-node": "^3.3.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"typescript": "^3.8"
},
"dependencies": {
"@bugsnag/js": "^7.5.1",
"@bugsnag/plugin-express": "^7.3.5",
"@types/jsonwebtoken": "^8.5.8",
"aws-sdk": ">=2.814.0",
"body-parser": "^1.18.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"node-fetch": "^2.6.7",
"pg": "8.7.1",
"reflect-metadata": "^0.1.10",
"serverless": "^3.1.0",
"serverless-http": "^2.7.0",
"stripe": "^8.119.0",
"typeorm": "0.2.26",
"typeorm-aurora-data-api-driver": "^1.4.0",
"uuid": "^8.3.1"
},
"scripts": {
"dev": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.test.ts\" --exec npm run start",
"start": "ts-node src/index.ts",
"clean": "rm -rf .build && npm run fix",
"fix": "npm run prettier:fix && npm run lint:fix",
"schema:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "tslint --project .",
"lint:fix": "tslint --fix --force --project .",
"test": "jest -w 1",
"test:watch": "jest -w 1 --watchAll"
}
}