forked from LedgerHQ/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 848 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"private": "true",
"devDependencies": {
"@playwright/test": "^1.16.3",
"concurrently": "^6.4.0",
"husky": "^7.0.4",
"json": "^11.0.0",
"lint-staged": "^11.2.6"
},
"scripts": {
"prepare": "husky install",
"react": "yarn workspace @ledgerhq/react-ui",
"native": "yarn workspace @ledgerhq/native-ui",
"shared": "yarn workspace @ledgerhq/ui-shared",
"icons": "yarn workspace @ledgerhq/icons-ui",
"test:react:setup": "yarn playwright install && yarn icons build && yarn shared build && yarn react prerelease",
"test:react": "node tests/react.script webpack.js && node tests/react.script next.js",
"test:react:update-snapshots": "env UPDATE_SNAPSHOTS=1 node tests/react.script webpack.js && env UPDATE_SNAPSHOTS=1 node tests/react.script next.js"
},
"workspaces": [
"packages/*"
]
}