-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 1020 Bytes
/
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
{
"name": "terrabuzz",
"version": "1.0.0",
"description": "Just a social media application idea by University students.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rubix982/Social-Media-Project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rubix982/Social-Media-Project/issues"
},
"homepage": "https://github.com/Rubix982/Social-Media-Project#readme",
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"jest": "^26.6.3"
},
"dependencies": {
"yarn": "^1.22.10"
}
}