-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.2 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
74
75
76
77
78
{
"name": "git-installer",
"version": "1.3.2",
"scripts": {
"dev": "webpack --mode development --watch",
"prod": "webpack --mode production",
"build-release": "npm run prod && node scripts/zip.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:SayHelloGmbH/git-installer.git"
},
"dependencies": {
"@tanstack/react-table": "^8.5.15",
"@types/wordpress__components": "^9.8.6",
"@types/wordpress__i18n": "^3.11.0",
"dayjs": "^1.10.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^7.35.0",
"react-popper": "^2.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"@teamsupercell/typings-for-css-modules-loader": "^2.4.0",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"archiver": "^5.3.1",
"autoprefixer": "^10.2.6",
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.2.6",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"mini-css-extract-plugin": "^2.1.0",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.1",
"postcss-mixins": "^8.1.0",
"postcss-nested": "^5.0.5",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.2",
"prettier-stylelint": "^0.4.2",
"raw-loader": "^4.0.2",
"style-loader": "^3.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-livereload-plugin": "^3.0.2"
},
"author": "Nico Martin",
"license": "[email protected]",
"bugs": {
"url": "https://github.com/SayHelloGmbH/git-installer/issues"
},
"homepage": "https://github.com/SayHelloGmbH/git-installer/blob/main/README.md",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"importOrder": [
"^@wordpress/(.*)$",
"^[./]"
]
}
}