-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 885 Bytes
/
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
{
"name": "squarebox",
"version": "0.1.0",
"private": true,
"dependencies": {
"@aelesia/commons": "^0.5.0-next.47",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unused-imports": "^1.1.1",
"lerna": "^4.0.0",
"prettier": "^2.3.2",
"qr-scanner": "^1.2.0",
"react-qr-reader": "^2.2.1",
"typescript": "^4.1.2"
},
"scripts": {
"setup": "yarn lerna bootstrap",
"start:frontend": "npx lerna exec --scope=squarebox-frontend yarn start",
"start:backend": "npx lerna exec --scope=squarebox-backend yarn start",
"compile": "npx lerna exec -- yarn compile",
"compile:fix": "npx lerna exec -- yarn compile:fix",
"dist:frontend": "sh frontend-build-script.sh"
}
}