-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
{
"name": "elevate",
"version": "1.0.0",
"description": "[![Build Status](https://travis-ci.com/rithmschool/elevate.svg?token=Pxy3GeuzWCYvsNZiz4da&branch=master)](https://travis-ci.com/rithmschool/elevate)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rithmschool/elevate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rithmschool/elevate/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint"
],
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"homepage": "https://github.com/rithmschool/elevate#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-config-react-app": "^5.0.1",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2"
},
"dependencies": {
"google-auth-library": "^5.2.1",
"reactstrap": "^8.1.1",
"aws-sdk": "^2.553.0",
"bluebird": "^3.7.1",
"express": "^4.17.1",
"file-type": "^12.3.1",
"fs": "0.0.1-security",
"multiparty": "^4.2.1"
}
}