-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1.1 KB
/
package.json
File metadata and controls
22 lines (22 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "react-simple-qr-code-scanner",
"description": "A super simple qr code scanner",
"scripts": {
"build": "nx build react-simple-qr-code-scanner",
"pages:build": "nx build test",
"pages:deploy": "pnpm run pages:build && gh-pages -d packages/test/dist",
"test": "pnpm run build && npm-run-all --parallel test:*",
"test:testProject": "nx dev test",
"test:react-simple-qr-code-scanner": "cd packages/react-simple-qr-code-scanner && pnpm run watch",
"publish": "pnpm run prepublish && npm publish ./packages/react-simple-qr-code-scanner/",
"publish:beta": "pnpm run prepublish && npm publish ./packages/react-simple-qr-code-scanner/ --tag beta",
"publish:alpha": "pnpm run prepublish && npm publish ./packages/react-simple-qr-code-scanner/ --tag alpha",
"prepublish": "pnpm i && nx build react-simple-qr-code-scanner && cp README.md ./packages/react-simple-qr-code-scanner/README.md && cp LICENSE ./packages/react-simple-qr-code-scanner/LICENSE"
},
"devDependencies": {
"gh-pages": "^5.0.0",
"npm-run-all": "^4.1.5",
"nx": "16.5.0",
"nx-cloud": "latest"
}
}