-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
{
"name": "oneshop-configuration-override",
"version": "2.0.1",
"description": "Overrides configuration",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack.dev.js --watch",
"build": "npm run update-version && webpack --config webpack.prod.js",
"update-version": "genversion-plus --gen es6 -v src/version.ts",
"clean": "rimraf plugin && rimraf plugin.zip",
"test": "npx jest --passWithNoTests",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"author": "Guillermo Loaysa",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.0",
"brace": "^0.11.1",
"jsoneditor": "^9.7.4",
"jsoneditor-react": "^3.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@korabo/genversion-plus": "^1.0.1",
"@types/chrome": "^0.0.186",
"@types/jest": "^25.1.4",
"@types/jquery": "^3.3.33",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.1",
"css-loader": "^6.7.1",
"eslint": "^7.28.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"husky": "^8.0.1",
"jest": "^26.6.3",
"lint-staged": "^13.0.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"ts-jest": "^25.2.1 ",
"ts-loader": "^6.2.1",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "~3.8.3 ",
"webpack": "^5.38.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "~4.2.2"
},
"lint-staged": {
"src/**/*.{ts,tsx,css}": [
"prettier --write"
]
}
}