-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "micro-blog-api",
"version": "1.0.1",
"description": "this is api have the propose of offer logical fonts for a micro blog'",
"main": "nodemon src/infra/server/init.js",
"scripts": {
"test": "jest --coverage ",
"test:staged": "jest --coverage --passWithNoTests",
"format": "prettier --write .",
"prepare": "husky install",
"start": "NODE_ENV=development NODE_PATH=. nodemon src/infra/server/init.js"
},
"lint-staged": {
"*.js": [
"eslint --fix .",
"git add .",
"npm run test:staged"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunadis/micro-blog-api.git"
},
"author": "lunadis",
"license": "ISC",
"bugs": {
"url": "https://github.com/lunadis/micro-blog-api/issues"
},
"homepage": "https://github.com/lunadis/micro-blog-api#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^31.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
},
"dependencies": {
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.7.0",
"mysql2": "^3.0.1",
"nodemon": "^2.0.20",
"security-route": "^1.3.2",
"sequelize": "^6.28.0"
}
}