-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.88 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "goodhood",
"description": "An umbrella repository to hold all \"semi open source\" packages used by GoodHood exclusively.",
"author": "Good Hood GmbH <[email protected]>",
"license": "MIT",
"homepage": "https://goodhood.eu/",
"repository": "github:goodhood-eu/goodhood",
"bugs": "https://github.com/goodhood-eu/goodhood/issues",
"private": true,
"workspaces": [
"packages/*",
"package-templates/*"
],
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/plugin-transform-strict-mode": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/register": "^7.24.6",
"@babel/runtime": "^7.25.0",
"@goodhood/icons": "^5.1.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-url": "^6.1.0",
"@svgr/rollup": "^6.2.0",
"@svgr/webpack": "^6.2.0",
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.7",
"@types/react-dom": "^18.2.25",
"acorn": "^8.12.1",
"acorn-jsx": "^5.3.2",
"babel-loader": "^8.3.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"browserslist-config-nebenan": "^1.0.2",
"chai": "^4.3.10",
"clsx": "^2.1.1",
"core-js": "3",
"css-loader": "^5.2.7",
"eslint": "^8.54.0",
"eslint-config-nebenan": "^4.4.1",
"eval": "^0.1.8",
"express": "^4.19.2",
"file-loader": "^6.2.0",
"glob": "^7.2.3",
"html-webpack-plugin": "^5.6.0",
"lerna": "^4.0.0",
"link-parent-bin": "^2.0.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^1.6.2",
"mocha": "^10.7.3",
"nebenan-ui-kit": "^7.0.0",
"postcss": "^8.4.41",
"postcss-preset-env": "^7.8.3",
"prop-types": "^15.8.1",
"qs": "^6.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-refresh": "^0.14.2",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"resolve-url-loader": "^5.0.0",
"rollup": "^2.79.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-glob-import": "^0.5.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.77.1",
"sass-functions": "^2.0.2",
"sass-loader": "^10.2.0",
"sinon": "^9.2.4",
"stylelint": "^15.11.0",
"stylelint-config-nebenan": "^3.0.1",
"ts-loader": "^9.5.1",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"updeep": "^1.2.4",
"val-loader": "^2.1.2",
"webpack": "^5.91.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^6.1.2",
"webpack-hot-middleware": "^2.26.1",
"webpack-merge": "^5.10.0"
},
"scripts": {
"reinstall": "rm -rf node_modules yarn.lock && yarn",
"ci": "yarn install --frozen-lockfile",
"build": "lerna exec --parallel --no-bail yarn run build",
"build:preview": "lerna exec --parallel --no-bail yarn run build:preview",
"tryBuild": "lerna exec --parallel --no-bail yarn run build || true",
"--- CHECKS AND TEST SCRIPTS ---": "-----------------------------",
"check": "npm test && npm run lint && echo \"\\033[0;32mAll checks pass\\033[0m\"",
"lint": "npm run lint:javascript && npm run lint:styles && npm run lint:typescript",
"lint:javascript": "eslint -f stylish \"./**/*.{js,jsx,ts,tsx}\"",
"lint:typescript": "lerna run --parallel --no-bail lint:typescript",
"lint:styles": "stylelint \"./**/*.scss\" ",
"test": "scripts/run-tests",
"--- NPM LIFECYCLE SCRIPTS ---": "-----------------------------",
"postinstall": "lerna bootstrap && link-parent-bin && link-parent-bin -c package-templates && yarn run tryBuild"
},
"dependencies": {}
}