-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.97 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
{
"name": "ocean-report",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"setup": "node ./setup_now.js",
"fix:format": "prettier --write \"**/*.{js,json,md}\" --ignore-path .gitignore",
"test": "TZ=UTC react-scripts test",
"test:format": "prettier --check \"**/*.{js,json}\" --ignore-path .gitignore",
"coverage": "TZ=UTC react-scripts test --coverage --watchAll=false",
"danger": "danger",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"@testing-library/react": "^11.2.7",
"bootstrap": "^4.4.1",
"chartjs-plugin-annotation": "^0.5.7",
"dotenv": "^8.2.0",
"next": "^11.1.1",
"react": "17.0.1",
"react-bootstrap": "^1.0.0",
"react-chartjs-2": "^2.9.0",
"react-dom": "17.0.1",
"react-scripts": "^4.0.3",
"storybook-css-modules-preset": "^1.1.1",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"babel-loader": "^8.1.0",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.3.5",
"@storybook/addon-links": "^6.2.9",
"jest-fetch-mock": "^3.0.3",
"@storybook/react": "^6.3.5",
"danger": "^10.0.0",
"husky": "^4.2.3",
"now": "^18.0.0",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1"
},
"jest": {
"collectCoverageFrom": [
"./src/components/*.jsx",
"./src/pages/index.jsx",
"./src/utils/*.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"coverageReporters": [
"text",
"lcov"
]
}
}