-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
63 lines (63 loc) · 1.36 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
{
"name": "speakfriend",
"version": "0.1.0",
"private": true,
"maintainers": [
{
"name": "Sonu Toor",
"url": "https://github.com/SonuToor",
"email": "[email protected]"
}
],
"dependencies": {
"airtable": "^0.8.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"pluralize": "^7.0.0",
"react": "^16.7.0-alpha.0",
"react-datetime-picker": "^2.8.0",
"react-dom": "^16.7.0-alpha.0",
"react-reveal": "^1.2.2",
"react-router-dom": "^4.3.1",
"react-scripts": "2.0.5",
"rebass": "^3.2.2",
"styled-components": "^4.0.2",
"url-join": "^4.0.0"
},
"scripts": {
"ui": "react-scripts start",
"lambda": "netlify-lambda serve src/lambdas",
"start": "react-scripts start",
"build": "react-scripts build"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:prettier/recommended"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-loader": "^8.0.4",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"netlify-lambda": "^1.0.2",
"prettier": "^1.14.3"
}
}