-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.1 KB
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
{
"name": "countdown-timer",
"description": "Live countdown timers to any date and time",
"version": "0.4.0",
"repository": {
"type": "git",
"url": "https://github.com/soandrew/countdown-timer.git"
},
"homepage": "https://soandrew.github.io/countdown-timer",
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"lint": "npx eslint src",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"build": "react-scripts build",
"postbuild": "react-snap",
"predeploy": "git tag \"v${npm_package_version}+$(git rev-parse --short HEAD)\"",
"deploy": "npx gh-pages -d build -m \"Deploy $(git describe --tags)\"",
"postdeploy": "git push origin $(git describe --tags)",
"eject": "react-scripts eject"
},
"dependencies": {
"bootstrap": "^4.5.0",
"countdown": "^2.6.0",
"focus-visible": "^5.1.0",
"lodash": "^4.17.15",
"moment": "^2.26.0",
"moment-timezone": "^0.5.31",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"sass-material-colors": "0.0.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^10.4.7",
"@testing-library/user-event": "^12.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"jest-chain": "^1.1.5",
"jest-environment-jsdom-sixteen": "^1.0.3",
"jest-enzyme": "^7.1.2",
"lint-staged": "^10.2.11",
"react-snap": "^1.23.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --quiet"
}
},
"jest": {
"restoreMocks": true
},
"lint-staged": {
"*.js": "eslint --max-warnings 0"
}
}