-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.44 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
{
"name": "clipinc",
"version": "1.12.12",
"description": "clipinc chrome browser extension to record spotify songs",
"repository": {
"type": "git",
"url": "https://github.com/TobitSoftware/clipinc"
},
"license": "MIT",
"author": "Tobit Software",
"main": "src/manifest.json",
"scripts": {
"build": "rimraf dist/ update.zip && webpack && node scripts/bundle",
"dev-build": "webpack --env development",
"format": "prettier . --write",
"format-staged": "pretty-quick --staged",
"lint": "eslint . --ignore-path .gitignore",
"test": "jest"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"core-js": "^3.32.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"suitcss-base": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@emotion/babel-plugin": "^11.11.0",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"archiver": "^5.3.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.6.4",
"babel-loader": "^9.1.3",
"chrome-launcher": "^0.15.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.48.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-terser": "^2.1.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jest": "^29.6.4",
"jest-cli": "^29.6.4",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.0.2",
"prettier-plugin-packagejson": "^2.4.5",
"pretty-quick": "^3.1.3",
"puppeteer": "^21.1.0",
"rimraf": "^5.0.1",
"shx": "^0.3.4",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
}
}