-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
126 lines (126 loc) · 4.56 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "chronos",
"description": "Browser extension for recording & visualizing web browsing activity",
"version": "1.1.1",
"license": "MIT",
"homepage": "https://github.com/tohjustin/chronos",
"repository": {
"type": "git",
"url": "https://github.com/tohjustin/chronos.git"
},
"scripts": {
"start": "cross-env REACT_APP_GIT_COMMIT_SHA=$(git rev-parse --short HEAD) react-app-rewired start",
"start:demo": "cross-env REACT_APP_BUILD_TARGET=demo REACT_APP_GIT_COMMIT_SHA=$(git rev-parse --short HEAD) react-app-rewired start",
"start:remote-debug": "REACT_APP_REMOTE_DEBUG_MODE=true npm run start",
"build": "npm run build:demo",
"build:demo": "cross-env-shell REACT_APP_BUILD_TARGET=demo REACT_APP_GIT_COMMIT_SHA=$(git rev-parse --short HEAD) INLINE_RUNTIME_CHUNK=false PUBLIC_URL=. \"react-app-rewired build\"",
"build:extension": "cross-env-shell REACT_APP_GIT_COMMIT_SHA=$(git rev-parse --short HEAD) INLINE_RUNTIME_CHUNK=false PUBLIC_URL=. \"react-app-rewired build && node pack-extension.js\"",
"eject": "react-app-rewired eject",
"check": "npm run type-check && npm run lint && npm run stylelint && npm run prettier",
"type-check": "tsc --noEmit",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": " eslint --fix './src/**/*.{ts,tsx}'",
"stylelint": "stylelint './src/**/*.scss'",
"stylelint:fix": "stylelint --fix './src/**/*.scss'",
"prettier": "prettier --check './src/**/*.{ts,tsx}'",
"prettier:fix": "prettier --write './src/**/*.{ts,tsx}'",
"test": "cross-env TZ=America/Vancouver react-app-rewired test",
"test:ci": "cross-env CI=true npm run test",
"test:debug": "cross-env TZ=America/Vancouver react-app-rewired --inspect-brk test --no-cache --runInBand --watchAll",
"react-devtools": "react-devtools",
"redux-devtools": "redux-devtools --hostname=localhost --port=8098"
},
"husky": {
"hooks": {
"pre-commit": "npm run check"
}
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 opera version"
],
"dependencies": {
"@reduxjs/toolkit": "1.2.5",
"classnames": "2.2.6",
"connected-react-router": "6.8.0",
"d3": "5.15.0",
"d3-interpolate-path": "2.1.2",
"dexie": "2.0.4",
"evergreen-ui": "4.23.3",
"file-saver": "2.0.2",
"history": "4.10.1",
"lodash": "4.17.15",
"luxon": "1.22.0",
"react": "16.13.0",
"react-countup": "4.3.3",
"react-day-picker": "7.4.0",
"react-dom": "16.13.0",
"react-feather": "2.0.3",
"react-redux": "7.2.0",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"react-transition-group": "4.3.0",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"resize-observer-polyfill": "1.5.1",
"use-debounce": "3.4.0"
},
"devDependencies": {
"@hot-loader/react-dom": "16.13.0",
"@testing-library/dom": "7.0.4",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.4.0",
"@testing-library/user-event": "8.1.3",
"@types/chrome": "0.0.101",
"@types/classnames": "2.2.10",
"@types/d3": "5.7.2",
"@types/d3-interpolate-path": "2.0.0",
"@types/file-saver": "2.0.1",
"@types/firefox-webext-browser": "70.0.1",
"@types/history": "4.7.5",
"@types/jest": "24.9.1",
"@types/lodash": "4.14.149",
"@types/luxon": "1.21.0",
"@types/node": "12.12.28",
"@types/react": "16.9.23",
"@types/react-dom": "16.9.5",
"@types/react-redux": "7.1.7",
"@types/react-router": "5.1.4",
"@types/react-router-dom": "5.1.3",
"@types/react-transition-group": "4.2.4",
"@types/webpack-env": "1.15.1",
"@typescript-eslint/eslint-plugin": "2.19.0",
"@typescript-eslint/parser": "2.19.0",
"adm-zip": "0.4.14",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.0",
"husky": "4.2.3",
"jest": "24.9.0",
"lint-staged": "10.0.8",
"node-sass": "4.13.1",
"prettier": "1.19.1",
"react-app-rewire-hot-loader": "2.0.1",
"react-app-rewired": "2.1.5",
"react-devtools": "4.5.0",
"react-hot-loader": "4.12.20",
"react-scripts": "3.4.0",
"redux-devtools-cli": "0.0.1-1",
"remote-redux-devtools": "0.5.16",
"stylelint": "13.2.1",
"stylelint-config-standard": "20.0.0",
"stylelint-scss": "3.15.0",
"ts-jest": "24.3.0",
"typescript": "3.8.3",
"write-file-webpack-plugin": "4.5.1"
},
"engines": {
"node": "^12.16.1"
}
}