generated from C7F/Template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
61
62
{
"name": "c7f-backend",
"version": "1.0.0",
"description": "Backend for C7F platform.",
"main": "dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev src/app.ts",
"build": "tsc",
"lint": "eslint \"src/**/*.{ts,js,jsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,js,jsx}\" --fix",
"start": "node dist/app.js",
"migrate:latest": "knex migrate:latest --knexfile ./src/knexfile.ts",
"migrate:rollback": "knex migrate:rollback --knexfile ./src/knexfile.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/C7F/C7F-Backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/C7F/C7F-Backend/issues"
},
"homepage": "https://github.com/C7F/C7F-Backend#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@types/cors": "^2.8.7",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^5.1.0",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.5",
"pg": "^8.3.3",
"uuid": "^8.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.8",
"@types/faker": "^5.1.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/uuid": "^8.3.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"eslint": "^7.8.1",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.3.0",
"ts-node-dev": "^1.0.0-pre.62",
"typescript": "^4.0.2"
}
}