-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·55 lines (55 loc) · 1.77 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
{
"name": "powerapi",
"version": "1.2.0",
"description": "",
"main": "server.ts",
"scripts": {
"start": "node dist/server.js",
"start:dist": "doppler run -- node dist/server.js",
"develop": "nodemon -r tsconfig-paths/register --transpile-only ./src/server.ts",
"dev": "doppler run -- pnpm develop",
"build": "rm -rf dist && tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"lint": "eslint --ext .ts .",
"test": "doppler run -- jest --detectOpenHandles --forceExit"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/davlet61/powerapi.git"
},
"author": "Dovlat Yakshibayev",
"license": "ISC",
"dependencies": {
"@sentry/node": "^7.49.0",
"axios": "^1.3.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"node-cron": "^3.0.2",
"swagger-ui-express": "^4.6.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.0",
"@types/node-cron": "^3.0.4",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.5",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}