-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
93 lines (93 loc) · 2.79 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": "airtime-calculator",
"description": "Airtime calculator for LoRaWAN",
"version": "1.3.0",
"author": "Arjan van Bentem",
"private": true,
"homepage": "https://avbentem.github.io/airtime-calculator",
"repository": "https://github.com/avbentem/airtime-calculator",
"scripts": {
"start": "react-scripts start",
"prebuild": "npm run lint",
"build": "react-scripts build",
"test": "react-scripts test",
"lint:es": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:style": "stylelint 'src/**/*'",
"lint:pretty": "prettylint '**/*.{html,json,md,yaml}'",
"lint": "npm run lint:es || npm run lint:style || npm run lint:pretty",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint",
"src/**/*": "stylelint",
"**/*.{html,json,md,yaml}": "prettylint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@testing-library/dom": "^7.24.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.2",
"@testing-library/user-event": "^12.1.3",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.13",
"@types/lodash": "^4.14.161",
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-plotly.js": "^2.2.4",
"@types/react-router-dom": "^5.1.5",
"@types/react-test-renderer": "^16.9.3",
"axios": "^0.21.1",
"bootstrap": "^4.5.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest-dom": "^3.2.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-testing-library": "^3.8.0",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"jest-enzyme": "^7.1.2",
"lint-staged": "^10.3.0",
"lodash": "^4.17.20",
"node-sass": "^4.14.1",
"plotly.js-basic-dist": "^1.55.1",
"prettier": "^2.1.1",
"prettylint": "^1.0.0",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-github-corner": "^2.4.0",
"react-icons": "^3.11.0",
"react-markdown": "^4.3.1",
"react-plotly.js": "^2.4.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"react-test-renderer": "^16.13.1",
"stylelint": "^13.7.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.18.0",
"typescript": "^4.0.2"
}
}