-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.95 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "alumni-portal",
"private": true,
"description": "Portal for current and past UPE members to network",
"version": "1.0.0",
"author": "Rudhra Raveendran <[email protected]>",
"dependencies": {
"@buupe/react-components": "^1.0.0",
"bootstrap": "^4.6.0",
"gatsby": "^2.24.41",
"gatsby-image": "^2.4.15",
"gatsby-plugin-manifest": "^2.4.22",
"gatsby-plugin-offline": "^3.2.23",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sharp": "^2.6.26",
"gatsby-source-filesystem": "^2.3.24",
"gatsby-styled-components-dark-mode": "^2.0.3",
"gatsby-transformer-sharp": "^2.5.12",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-bootstrap": "^1.5.2",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"styled-components": "^5.2.3"
},
"devDependencies": {
"babel-eslint": "10.x",
"eslint": "6.x",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.0.5"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"yarn lint"
],
"src/**/*.{js,jsx,json,md}": [
"yarn format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"buildProd": "gatsby clean && gatsby build --prefix-paths",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint src",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/BUUPE/alumni"
},
"bugs": {
"url": "https://github.com/BUUPE/alumni/issues"
}
}