-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.38 KB
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
{
"name": "@geeks-react-components/layout",
"version": "2.0.17",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://node.nuget.app.geeks.ltd/"
},
"author": {
"name": "Geeks Ltd",
"email": "info@geeks.ltd.uk"
},
"license": "MIT",
"scripts": {
"build": "cross-env BABEL_ENV=production rollup -c=../../rollup.config.js",
"lint:css": "stylelint 'src/**/*.tsx'",
"lint:fix": "run-p -c 'lint:css --fix' 'lint:ts --fix'",
"lint:ts": "eslint src/**/*.{ts,tsx}",
"lint": "run-p -c lint:css lint:ts",
"prebuild": "rimraf dist && tsc",
"test:watch": "yarn test --watch",
"test": "tsc && jest --selectProjects layout --config ../../jest.config.js",
"watch": "yarn run build -w"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@geeks-react-components/core": "2.0.17",
"@geeks-react-components/utils": "2.0.3",
"react-bootstrap": "^2.10.2",
"react-router-dom": "^6.22.3"
},
"devDependencies": {
"@types/react-router-dom": "^5.1.7"
},
"gitHead": "aeb42f49d7c05f4408e3ded100a4115fbea38c35"
}