-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.23 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
{
"name": "trig-calculator",
"version": "1.0.0",
"description": "A web app to calculate triangle angles and sides",
"repository": {
"type": "git",
"url": "git+https://[email protected]/epeterson320/trig-calculator.git"
},
"keywords": [
"Trigonometry",
"Calculator",
"Triangle",
"Trig"
],
"browserslist": [
">0.2%",
"not dead"
],
"author": "Eric Peterson",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.6",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"husky": "^2.3.0",
"lint-staged": "^15.2.2",
"prettier": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-scripts": "^5.0.1",
"redux": "^4.0.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/index-hot.jsx",
"!src/prerender.jsx"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,css}": [
"prettier --write"
]
},
"scripts": {
"build": "react-scripts build",
"start": "react-scripts start",
"test": "react-scripts test",
"lint": "eslint src/**/*.{js,jsx}"
}
}