-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 930 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
28
29
30
{
"name": "xplora",
"version": "1.0.0",
"description": "Show file tree in browser",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"frontend/**",
"xplora-cli/**"
]
},
"scripts": {
"develop": "wsrun -p frontend xplora-cli -c develop",
"build:frontend": "wsrun -p frontend -c build",
"clean": "rm -rf dist && mkdir dist",
"copy-front-end-build-to-distribution": "rm -rf dist/frontend && cp -r packages/frontend/build dist/frontend/",
"copy-cli-code-to-dist": "cp -r packages/xplora-cli/** dist",
"build": "npm run test && npm run build:frontend && npm run clean && npm run copy-cli-code-to-dist && npm run copy-front-end-build-to-distribution",
"test": "wsrun -p frontend xplora-cli -c test"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"wsrun": "^5.2.4"
}
}