-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.28 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
63
64
65
66
67
{
"name": "express-ts-sequilize-decorator",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"test-nolint": "mocha -r ts-node/register tests/**/*.ts",
"test": "npm run lint && mocha -r ts-node/register tests/**/*.ts",
"start": "node build/src/index.js",
"build": "rimraf build && tsc --build tsconfig.prod.json",
"build_and_start": "npm run build && npm run start",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"dev": "cross-env NODE_ENV=development nodemon ./src/index.ts --exec \"npm run lint && ts-node\"",
"dev-nolint": "cross-env NODE_ENV=development nodemon ./src/index.ts --exec",
"coverage": "nyc --include src npm run test",
"coverage-nolint": "nyc --include src npm run test-nolint",
"coverage-report": "nyc --reporter=lcov --reporter=text-summary --include src npm run test",
"coverage-report-nolint": "nyc --reporter=lcov --reporter=text-summary --include src npm run test-nolint"
},
"author": "Cahyo Wibowo Widianarko",
"license": "ISC",
"dependencies": {
"ajv": "^6.12.6",
"bcrypt": "^5.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dayjs": "^1.10.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^5.5.2",
"healthchecks-api": "^0.2.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"rand-token": "^1.0.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.6.2",
"sequelize-typescript": "^2.1.0",
"typescript-ioc": "^3.2.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/faker": "^5.5.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.27",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^6.1.4",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sql-migrations": "^1.0.6",
"supertest": "^4.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}