-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.76 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.76 KB
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
{
"name": "codr-api",
"version": "1.0.0",
"author": "Dylan Bulmer <dylan@dylanbulmer.com>",
"repository": "git@github.com:CodrJS/API.git",
"license": "MIT",
"type": "commonjs",
"main": "dist/app.js",
"scripts": {
"test": "jest --config jest.config.json --passWithNoTests --coverage",
"build": "yarn clean && swc src -Dd dist",
"clean": "rm -rf ./dist",
"start": "NODE_ENV=production node dist/app.js",
"format": "prettier --write \"src/**/*.(ts|js)\"",
"lint": "eslint -c .eslintrc.json --ignore-path .eslintignore --ext .ts src",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags",
"build-dev": "yarn build && NODE_ENV=development node --inspect dist/app.js",
"dev": "nodemon --ext ts --exec \"yarn build-dev\""
},
"dependencies": {
"@aws-sdk/client-ses": "^3.216.0",
"@codrjs/core": "^1.0.14",
"@dylanbulmer/openapi": "^1.0.7",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"iron-session": "^6.3.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"nodemailer": "^6.8.0"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.8",
"@swc/jest": "^0.2.23",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.33",
"@types/nodemailer": "^6.4.6",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.2",
"jest": "^29.2.0",
"nodemon": "^2.0.20",
"openapi-types": "^11.0.0",
"prettier": "^2.7.1",
"typescript": "^4.6.4"
}
}