-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·58 lines (58 loc) · 1.73 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": "satellite-auth-api",
"version": "1.0.0",
"author": "Mukul Bansal",
"description": "Simple Express & Typescript boilerplate",
"main": "dist/server.js",
"engines": {
"node": "14.x"
},
"scripts": {
"lint": "eslint '{src,__test__}/**/*.ts'",
"postinstall": "yarn run dist",
"predist": "rimraf dist",
"dist": "tsc",
"start": "node .",
"test": "jest",
"dev": "nodemon ."
},
"devDependencies": {
"@stryker-mutator/typescript": "^3.3.1",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.4",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.22",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"axios-mock-adapter": "^1.18.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.6"
},
"dependencies": {
"@okta/jwt-verifier": "^1.0.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "5.0.0-alpha.8",
"morgan": "^1.10.0",
"serverless-http": "^2.5.0"
}
}