-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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": "trello-api",
"version": "1.0.0",
"description": "REST API which allows you to do simple CRUD operations with role permissions.",
"main": "dist/server.js",
"scripts": {
"tsc": "tsc",
"start": "nodemon --watch src --ext js,ts,json --exec ts-node --transpile-only ./src/server.ts",
"production": "rimraf dist && tsc && cross-env NODE_ENV=production node dist/server.js",
"lint": "eslint --ext .js,.ts src",
"lint:fix": "eslint --ext .js,.ts src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vdkrasny/trello-api.git"
},
"author": "vdkrasny",
"license": "ISC",
"bugs": {
"url": "https://github.com/vdkrasny/trello-api/issues"
},
"homepage": "https://github.com/vdkrasny/trello-api#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.1",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/hapi__joi": "^16.0.4",
"@types/helmet": "0.0.45",
"@types/jsonwebtoken": "^8.3.5",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"cross-env": "^6.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"nodemon": "^1.19.2",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"dependencies": {
"@hapi/joi": "^16.1.2",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.21.0",
"jsonwebtoken": "^8.5.1",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0",
"winston": "^3.2.1"
}
}