-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "inquisitor",
"version": "2.0.0",
"private": true,
"description": "BU UPE's Interview Tool.",
"homepage": "https://upe.bu.edu/inquisitor",
"author": "Rudhra Raveendran <[email protected]> (https://rooday.com)",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@sweetalert/with-react": "^0.1.1",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.7",
"bootstrap": "^4.3.1",
"bs-custom-file-input": "^1.3.4",
"firebase": "^7.16.1",
"gatsby": "^2.24.4",
"gatsby-image": "^2.2.44",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^2.2.48",
"gatsby-plugin-react-helmet": "^3.1.24",
"gatsby-plugin-sharp": "^2.4.13",
"gatsby-plugin-sitemap": "^2.2.30",
"gatsby-plugin-styled-components": "^3.2.1",
"gatsby-source-filesystem": "^2.1.56",
"gatsby-styled-components-dark-mode": "^1.1.1",
"gatsby-transformer-sharp": "^2.3.19",
"immutability-helper": "^3.1.1",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.omit": "^4.5.0",
"moment-timezone": "^0.5.31",
"qrcode.react": "^1.0.1",
"react": "^16.9.0",
"react-bootstrap": "^1.2.2",
"react-bootstrap-range-slider": "^1.2.2",
"react-day-picker": "^7.4.8",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^16.9.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.0.1",
"recompose": "^0.30.0",
"source-map-support": "^0.5.19",
"styled-components": "^5.1.1",
"sweetalert": "^2.1.2",
"upe-react-components": "https://github.com/BUUPE/React-Components.git#dist"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"babel-preset-gatsby": "^0.5.8",
"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",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.1.2",
"prettier-check": "^2.0.0"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --max-warnings=0"
],
"src/**/*.{js,jsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"build": "gatsby clean && gatsby build",
"buildProd": "gatsby clean && gatsby build --prefix-paths",
"develop": "gatsby clean && gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint src",
"lint-style": "prettier-check src/**/*.js",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"deploy": "gatsby clean && gatsby build --prefix-paths && gh-pages -d public"
}
}