-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
51 lines (51 loc) · 1.71 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
{
"name": "k2-extension",
"version": "1.4.0",
"description": "A Chrome Extension for Kernel Schedule",
"private": true,
"scripts": {
"preinstall": "./tools/checkRuntimeVersions.sh",
"build": "npm run build:chrome",
"build:chrome": "webpack --progress --config webpack.prod.js --env platform=chrome",
"build:firefox": "webpack --progress --config webpack.prod.js --env platform=firefox",
"package": "cd dist && zip -r -X ../dist.zip *",
"lint": "eslint . --max-warnings=0",
"lintfix": "eslint . --fix",
"lint:firefox": "npm run build:firefox && web-ext lint -s ./dist",
"web": "webpack --progress --config webpack.dev.js"
},
"dependencies": {
"idb-keyval": "^6.2.1",
"jquery": "^3.7.1",
"moment": "^2.30.1",
"octokit": "^3.2.1",
"prop-types": "^15.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-native-onyx": "^2.0.82",
"underscore": "^1.13.2",
"web-ext": "^8.3.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"babel-loader": "^9.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.0",
"css-loader": "^6.8.1",
"eslint-config-expensify": "^2.0.44",
"eslint-webpack-plugin": "^4.2.0",
"mini-css-extract-plugin": "^2.9.1",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"underscore-template-loader": "^1.2.0",
"webpack": "^5.96.1",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.10.0"
}
}