-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.18 KB
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
{
"name": "timecamp-chrome-extension",
"version": "3.145.0",
"description": "TimeCamp Google Chrome Time Tracking Extension",
"main": "index.js",
"scripts": {
"cosmos": "cosmos",
"cosmos:export": "cosmos-export",
"start": "webpack-cli --mode development --watch",
"build-prod": "bash -c \"if [ ! -z \"$SERVER_DOMAIN\" ]; then echo 'Server domain must be empty in production build'; else npm run build-prod-unsafe; fi\"",
"build-dev": "webpack-cli --mode development && npm run merge-background-files",
"build-prod-unsafe": "webpack-cli --mode production && npm run merge-background-files && npm run zip",
"merge-background-files": "cat 'dist/plugin/scripts-2.0/background-2.0.js' >> 'dist/plugin/scripts/background.js'",
"zip": "bash -c \"pushd dist/plugin && zip -rq ../timecamp-browser-extension-`node -p \"require('./package.json').version\"`.zip * && popd\""
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-optional-chaining",
[
"@babel/plugin-transform-react-jsx"
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/timecamp-org/timecamp-browser-plugin.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/timecamp-org/timecamp-browser-plugin/issues"
},
"homepage": "https://github.com/timecamp-org/timecamp-browser-plugin#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-react-jsx": "^7.12.17",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"css-loader": "^5.1.3",
"dotenv-webpack": "^7.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"raw-loader": "^4.0.2",
"react-cosmos": "^5.6.0",
"sass": "^1.94.2",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"webextension-polyfill": "^0.7.0",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge-and-include-globally": "^2.3.3"
},
"dependencies": {
"@babel/core": "^7.13.10",
"@babel/runtime": "^7.13.8",
"@fortawesome/fontawesome-pro": "^5.15.3",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/pro-light-svg-icons": "^5.15.3",
"@fortawesome/pro-regular-svg-icons": "^5.15.3",
"@fortawesome/pro-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"crypto-js": "^4.0.0",
"filemanager-webpack-plugin": "^3.1.0",
"moment": "^2.29.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-html-parser": "^2.0.2",
"react-vtree": "^2.0.4",
"react-window": "^1.8.6",
"regenerator-runtime": "^0.14.0",
"sass-loader": "^11.0.1",
"svg-url-loader": "^7.1.1",
"webpack-log": "^3.0.1"
}
}