-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.04 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
59
60
{
"name": "API-activity",
"version": "2023.2.0",
"type": "module",
"main": "server.js",
"author": "Jonathan Bell",
"license": "BSD-3-Clause",
"log": "2023-02-01 fixed build-live script to work on windows",
"scripts": {
"test": "jest",
"start": "npm run build:live",
"prestart": "tsoa spec-and-routes",
"build": "tsc -p .",
"zip": "npm-pack-zip",
"build:live-original": "concurrently \"nodemon --watch 'src/**/*.ts' --watch 'generated/routes.ts' src/server.ts\" \"nodemon --watch 'src/' --ext ts -x tsoa spec-and-routes\"",
"build:live": "concurrently \"nodemon -V --watch src -e ts --watch 'generated/routes.ts' --exec ts-node src/server.ts\" \"nodemon -V --watch 'src/' --ext ts -x tsoa spec-and-routes\"",
"swagger": "tsoa spec",
"format": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"keywords": [],
"devDependencies": {
"@babel/preset-typescript": "^7.21.0",
"@stoplight/spectral-cli": "^6.4.1",
"@tsoa/runtime": "^4.1.0",
"@types/cors": "^2.8.12",
"@types/jest": "^28.1.8",
"@types/node": "^18.0.3",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"concurrently": "^6.5.1",
"eslint": "^8.19.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"jest": "^28.1.3",
"jest-mock-extended": "^2.0.6",
"nodemon": "^2.0.19",
"npm-pack-zip": "^1.3.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.8.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/express": "^4.17.13",
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"http-status-codes": "^2.2.0",
"supertest": "^6.3.3",
"swagger-ui-express": "^4.4.0",
"tsoa": "^4.1.0"
}
}