-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "clockclock24",
"version": "0.1.0",
"homepage": "https://arnaudspanneut.github.io/ClockClock24/",
"scripts": {
"start": "NODE_ENV=development react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --coverage",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@types/node": "^12.0.0",
"@types/ramda": "^0.27.6",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.0",
"ramda": "^0.27.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-ga": "^3.1.1"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"gh-pages": "^3.0.0",
"prettier": "^2.0.5",
"react-scripts": "3.4.1",
"typescript": "~3.7.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageReporters": [
"html",
"text"
]
}
}