-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.64 KB
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
{
"name": "mkplace",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/mikecodejs/mkplace.git",
"author": "Maykel Figueiredo <mikerxvxl@gmail.com>",
"license": "MIT",
"scripts": {
"build": "babel src --extensions \".js,.ts\" --out-dir build --copy-files --no-copy-ignored",
"dev": "cross-env NODE_ENV=development ts-node-dev -r tsconfig-paths/register --respawn --ignore-watch ./node_module ./src/app.ts",
"lint:ci": "eslint . --quiet",
"lint:fix": "eslint --fix",
"prepare": "husky install",
"start": "cross-env NODE_ENV=production node ./dist/app.js",
"test": "jest"
},
"dependencies": {
"@prisma/client": "^3.9.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^15.0.0",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.0",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/morgan": "^1.9.3",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.8.0",
"faker": "5.5.3",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-mock-extended": "^2.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"prisma": "^3.9.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.13.0",
"typescript": "^4.5.5"
}
}