-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.2 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": "mrt-routes-finder",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "craco -r @cypress/instrument-cra start",
"build": "craco build",
"test": "craco test",
"test:debug": "node --inspect-brk node_modules/@craco/craco/scripts/test.js --runInBand",
"eject": "react-scripts eject",
"cover:jest": "CI=true yarn test --coverage",
"cover:cypress": "cypress run",
"precover:merge": "cp coverage/coverage-final.json .nyc_output",
"cover:merge": "nyc merge .nyc_output coverage/coverage.json",
"cover:report": "nyc report --reporter=lcov --reporter=text-summary",
"cover": "yarn cover:merge && yarn cover:report && open coverage/lcov-report/index.html"
},
"nyc": {
"all": true,
"extension": [
".ts",
".tsx"
],
"include": [
"src/**"
],
"reporter": []
},
"dependencies": {
"@blueprintjs/core": "^3.24.0",
"@blueprintjs/select": "^3.12.0",
"@craco/craco": "^5.6.4",
"@cypress/code-coverage": "^1.14.0",
"@cypress/instrument-cra": "^1.1.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/react-hooks": "^3.2.1",
"@testing-library/user-event": "^7.1.2",
"@types/classnames": "^2.2.10",
"@types/crypto-js": "^3.1.44",
"@types/google-map-react": "^1.1.5",
"@types/googlemaps": "^3.39.3",
"@types/graphlib": "^2.1.5",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"classnames": "^2.2.6",
"comlink": "^4.2.0",
"crypto-js": "^4.0.0",
"google-map-react": "^1.1.7",
"graphlib": "^2.1.8",
"k-shortest-path": "^0.0.5",
"node-sass": "^4.13.1",
"nyc": "^15.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"react-test-renderer": "^16.13.1",
"typescript": "~3.7.2",
"webpack-bundle-analyzer": "^3.6.1",
"webpackbar": "^4.0.0",
"worker-loader": "^2.0.0"
},
"devDependencies": {
"cypress": "^3.8.3",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-prettier": "^3.1.2",
"got": "^10.7.0",
"prettier": "^2.0.4"
}
}