-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.31 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
{
"name": "two-lambda-home-page",
"description": "This is the home page for Two Lambda",
"version": "0.1.0",
"private": true,
"contributors": [
"Kyle Gray (https://github.com/GoPro16)",
"Jonathan Danek (https://github.com/jdanek4)"
],
"author": "@GoPro16, @jdanek4",
"homepage": "https://twolambda.com/",
"license": "ISC",
"keywords": [
"react",
"twolambda",
"lambda"
],
"bugs": {
"url": "https://github.com/Two-Lambda-Labs/lambda-home/issues"
},
"dependencies": {
"@types/jest": "^23.3.14",
"@types/node": "^11.9.0",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@types/reactstrap": "^7.1.3",
"availity-uikit": "^3.2.0",
"prop-types": "^15.5.7",
"react": "^16.8.0-alpha.1",
"react-dom": "^16.8.0-alpha.1",
"react-hot-loader": "^4.1.1",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4",
"react-scripts-ts": "^3.1.0",
"react-transition-group": "^2.3.1",
"react-typing-animation": "^1.6.2",
"reactstrap": "^7.1.0",
"typescript": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^7.3.1",
"@commitlint/config-conventional": "^7.3.1",
"cross-env": "^5.1.4",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-availity": "^4.0.1",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"react-app-rewire-hot-loader": "^1.0.1",
"react-app-rewire-mobx": "^1.0.8",
"react-app-rewire-scss": "^1.0.2",
"react-app-rewired": "^1.5.2",
"react-scripts": "1.1.4",
"react-testing-library": "^5.4.4"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"scripts": {
"start": "cross-env NODE_PATH=src react-app-rewired start --scripts-version react-scripts-ts",
"build": "react-app-rewired build --scripts-version react-scripts-ts",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject"
}
}