-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.96 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
{
"name": "node-boilerplate",
"version": "2.6.0",
"author": "Caio Vieira",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.11",
"@types/faker": "^5.5.5",
"@types/jest": "^26.0.21",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^14.14.35",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.2",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "4",
"coveralls": "^3.1.0",
"eslint": "7",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"faker": "^5.5.3",
"git-commit-msg-linter": "^3.0.4",
"husky": "^5.2.0",
"jest": "26.4.2",
"lint-staged": "^10.5.4",
"sucrase": "^3.17.1",
"supertest": "^6.1.3",
"ts-jest": "26.4.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"scripts": {
"start": "NODE_ENV=prod node dist/main/server.js",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"dev:server": "NODE_ENV=dev ts-node-dev src/main/server.ts",
"prepare": "husky install",
"test": "NODE_ENV=test jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "NODE_ENV=test jest --passWithNoTests --runInBand",
"test:unit": "yarn test --watch -c jest-unit-config.js",
"test:integration": "yarn test --watch -c jest-integration-config.js",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage",
"typeorm": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"pg": "^8.5.1",
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.2.31",
"validator": "^13.5.2"
},
"engines": {
"node": "14.x"
},
"_moduleAliases": {
"@": "dist"
}
}