-
Notifications
You must be signed in to change notification settings - Fork 183
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "internship-lms-frontend",
"version": "1.0.0",
"description": "We are in the mission of solving a crisis for a lot of small and medium enterprises, who are trying to recruit interns for their projects.",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"precommit": "cd client && npm run precommit && npm run lint:fix",
"prepush": "cd client && npm run lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/praveenscience/Internship-LMS-FrontEnd.git"
},
"keywords": [
"ReactJS",
"NodeJS",
"ExpressJS"
],
"author": "Praveen Kumar Purushothaman",
"license": "ISC",
"bugs": {
"url": "https://github.com/praveenscience/Internship-LMS-FrontEnd/issues"
},
"homepage": "https://github.com/praveenscience/Internship-LMS-FrontEnd#readme",
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"pre-push": "npm run prepush"
}
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"prettier": "^2.4.1"
}
}