-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "avishkar2022",
"version": "1.0.0",
"description": "Website for Avishkar 2022 - Techno Management Festival of MNNIT",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"lint:server": "cd server && npm run lint",
"lint:client": "cd client && npm run lint",
"lint": "npm run lint:server && npm run lint:client",
"prettier:server": "cd server && npm run prettier",
"prettier:client": "cd client && npm run prettier",
"prettier": "npm run prettier:server && npm run prettier:client",
"checks": "npm run lint && npm run prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DuP-491/Avishkar.git"
},
"keywords": [],
"contributors": [
{
"name": "MojoAlpha",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/DuP-491/Avishkar/issues"
},
"homepage": "https://github.com/DuP-491/Avishkar#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"engines": {
"node": ">= 10.0.0",
"npm": ">= 6.0.0"
},
"dependencies": {
"@types/react-router-dom": "^5.3.3"
}
}