-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 2.23 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
{
"name": "comfortable-panda",
"version": "5.2.1",
"description": "Comfortable PandA is a browser extension for managing assignments and quizzes on PandA.",
"main": "index.ts",
"scripts": {
"test": "jest",
"build:chrome": "webpack --config tasks/webpack.config.chrome.js && node tasks/release chrome",
"build:firefox": "webpack --config tasks/webpack.config.firefox.js && node tasks/release firefox",
"build:safari": "webpack --config tasks/webpack.config.safari.js && node tasks/release safari",
"convert:safari": "npm run build:safari && xcrun safari-web-extension-converter dist/source/safari --project-location dist/source/safari-proj --app-name \"Comfortable-PandA\" --bundle-identifier \"com.das08.ComfortablePandA.Safari\" --force\n",
"build:all": "npm run build:chrome && npm run build:firefox && npm run build:safari"
},
"author": "das08, tinaxd, tetete, arakistic",
"license": "Apache-2.0",
"dependencies": {
"@types/chrome": "^0.0.178",
"archiver": "^5.3.0",
"copy-webpack-plugin": "^10.2.4",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"ts-loader": "^9.2.6",
"uuid": "^8.3.2",
"webpack": "^5.70.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.5.1",
"terser-webpack-plugin": "^5.3.1",
"ts-jest": "^27.1.3",
"typescript": "^4.7.4",
"webpack-cli": "^4.9.1"
},
"jest": {
"automock": false,
"setupFiles": [
"./src/tests/setupJest.js"
],
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/tests/**/*.test.ts"
],
"preset": "ts-jest"
}
}