-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"author": "Nishant Kohli",
"version": "1.0.0",
"private": true,
"name": "ads",
"workspaces": [
"packages/*"
],
"_moduleAliases": {
"_pkgroot": "./packages",
"_express_src": "./packages/express-server/src",
"_routes": "./packages/express-server/src/routes",
"_fastify_src": "./packages/fastify-server/src",
"_graphql": "./packages/libs/graphql",
"_gqlschema": "./packages/libs/graphql/schema",
"_mongo": "./packages/libs/mongo",
"_models": "./packages/libs/mongo/model",
"_mongoops": "./packages/libs/mongo/ops",
"_passport": "./packages/express-server/src/passportjs"
},
"scripts": {
"express-server": "cd packages\\express-server && yarn start",
"fastify-server": "cd packages\\fastify-server && yarn start"
},
"devDependencies": {
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.4"
},
"dependencies": {
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js, jsx, ts, tsx, md, html}": "prettier --write"
}
}