-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "idea-generec-planfix-server",
"version": "1.0.0",
"description": "Self hosted generic server for planfix and JetBrains ide",
"main": "index.js",
"author": "Max Podvakov<i.snova.bebebe@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"start": "node lib",
"build": "tsc -p .",
"start:dev": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/index.ts",
"deploy:heroku": "heroku container:push web && heroku container:release web"
},
"dependencies": {
"basic-auth": "^2.0.1",
"convict": "^6.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"planfix-client": "^1.0.3"
},
"devDependencies": {
"@types/basic-auth": "^1.1.3",
"@types/convict": "^5.2.1",
"@types/express": "^4.17.9",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}