forked from passbolt/passbolt_styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·110 lines (110 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
109
110
{
"name": "passbolt-styleguide",
"version": "4.8.0",
"license": "AGPL-3.0",
"copyright": "Copyright 2023 Passbolt SA",
"description": "Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.",
"homepage": "https://www.passbolt.com",
"repository": "https://github.com/passbolt/passbolt_styleguide",
"engines": {
"node": ">=18.18.0",
"npm": ">=9.8.1"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/runtime": "^7.22.6",
"@testing-library/dom": "^8.11.3",
"@testing-library/react": "^12.1.4",
"babel-jest": "^29.6.2",
"babel-loader": "^9.1.3",
"eslint": "^8.46.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-no-unsanitized": "^4.0.1",
"eslint-plugin-react": "^7.33.1",
"fetch-mock": "^9.10.7",
"fetch-mock-jest": "^1.3.0",
"grunt": "^1.3.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-less": "^3.0.0",
"grunt-contrib-symlink": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-header": "^1.1.0",
"grunt-shell": "^4.0.0",
"i18next-parser": "^8.12.0",
"jest": "^29.6.2",
"jest-each": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^16.0.0",
"jest-useragent-mock": "^0.1.1",
"jest-webextension-mock": "^3.8.9",
"lockfile-lint": "^4.12.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"debounce-promise": "^3.1.2",
"grapheme-splitter": "^1.0.4",
"html5-qrcode": "^2.3.8",
"i18next": "^23.7.16",
"i18next-http-backend": "^2.4.2",
"ip-regex": "^5.0.0",
"jssha": "^3.2.0",
"luxon": "^3.4.4",
"otpauth": "^9.1.4",
"prop-types": "^15.7.2",
"qrcode": "^1.5.0",
"react": "17.0.2",
"react-color": "^2.19.3",
"react-dom": "17.0.2",
"react-i18next": "^14.0.0",
"react-list": "^0.8.15",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"uuid": "^8.3.0",
"validator": "^13.9.0",
"webextension-polyfill": "^0.10.0",
"xregexp": "^5.1.1"
},
"overrides": {
"make-dir": {
"semver": "7.5.4"
},
"@typescript-eslint/utils": {
"semver": "7.5.4"
},
"@typescript-eslint/typescript-estree": {
"semver": "7.5.4"
},
"glob-stream": {
"glob-parent": "5.1.2"
}
},
"scripts": {
"build": "npm run build-api-app",
"build-api-app": "webpack --config webpack-api.config.js",
"test": "npm run test:unit",
"test:unit": "jest --no-cache ./src",
"test:coverage": "jest --no-cache ./src --coverage",
"test:storybook": "test-storybook",
"test:ci:coverage": "npm run test:coverage -- --runInBand",
"lint": "npm run lint:lockfile && npm run lint:eslint",
"lint:lockfile": "lockfile-lint --path package-lock.json --allowed-hosts npm --allowed-schemes \"https:\" --empty-hostname false",
"lint:eslint": "eslint -c .eslintrc.json --ext js --ext jsx src/react-extension src/react-quickaccess src/react-web-integration src/shared",
"lint:eslint-fix": "eslint -c .eslintrc.json --ext js --ext jsx --fix src/react-extension src/react-quickaccess src/react-web-integration src/shared",
"i18n:externalize": "i18next -c ./i18next-parser.config.js",
"deploy-storybook": "storybook-to-ghpages --remote github",
"dev:build:custom-theme": "npx grunt build_custom_theme",
"dev:storybook:build": "NODE_OPTIONS=--max_old_space_size=2048 build-storybook",
"dev:storybook:install": "./scripts/installStorybookDependencies.sh",
"dev:storybook:start": "STORYBOOK_DEV=true start-storybook -p 6006",
"dev:watch:custom-theme": "npx grunt watch_custom_theme"
}
}