forked from toggl/track-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3 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
{
"name": "toggl-button",
"version": "1.66.8",
"description": "Add Toggl one-click time tracking to popular web tools.",
"license": "BSD-3-Clause",
"private": true,
"engines": {
"node": ">=10.14.0"
},
"scripts": {
"start": "webpack-cli --mode development --watch",
"build": "webpack-cli --mode production --env.production",
"release": "webpack-cli --mode production --env.production --env.release",
"lint": "eslint",
"lint:staged": "lint-staged",
"lint:ci": "eslint -- `git diff --diff-filter=ACMTUXB --name-only $TRAVIS_COMMIT_RANGE -- '*.js' | tr '\n' ' '`",
"postversion": "npm run release"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-optional-chaining",
[
"@babel/plugin-transform-react-jsx"
]
]
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"Firefox ESR"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/scripts/**/*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-optional-chaining": "7.2.0",
"@babel/plugin-transform-react-jsx": "7.3.0",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@semantic-release/changelog": "3.0.2",
"@semantic-release/commit-analyzer": "6.1.0",
"@semantic-release/git": "7.0.8",
"@semantic-release/github": "5.2.10",
"@semantic-release/npm": "5.1.9",
"@semantic-release/release-notes-generator": "7.1.4",
"@types/react": "16.8.19",
"@types/react-dom": "16.8.4",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "3.0.0",
"compression-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "5.0.3",
"eslint": "5.12.1",
"eslint-config-standard": "12.0.0",
"eslint-config-standard-preact": "1.1.6",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-standard": "4.0.0",
"filemanager-webpack-plugin": "2.0.5",
"fs-extra": "8.0.1",
"husky": "2.4.0",
"lint-staged": "8.2.0",
"semantic-release": "15.13.24",
"svg-url-loader": "2.3.2",
"ts-loader": "6.0.2",
"typescript": "3.5.1",
"webextension-polyfill": "0.4.0",
"webpack": "4.33.0",
"webpack-bugsnag-plugins": "1.4.0",
"webpack-cli": "3.3.2",
"webpack-log": "2.0.0"
},
"dependencies": {
"@bugsnag/js": "6.0.0",
"@emotion/core": "10.0.10",
"@emotion/styled": "10.0.10",
"date-fns": "1.30.1",
"keycode": "2.2.0",
"lodash.map": "4.6.0",
"lodash.reduce": "4.6.0",
"moment": "2.24.0",
"nanoid": "1.2.6",
"prop-types": "15.7.2",
"raw-loader": "4.0.1",
"react": "16.8.4",
"react-dom": "16.8.4",
"react-emotion": "10.0.0"
}
}