-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.39 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.39 KB
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
{
"name": "@mauriora/keyword-feedback-solution",
"version": "0.0.3",
"repository": {
"url": "https://github.com/mauriora/screen-controller-mono-repo"
},
"private": true,
"workspaces": [
"shared/**",
"app/**"
],
"scripts": {
"serve-extension": "yarn workspace @mauriora/keyword-feedback-extension serve",
"build-extension": "yarn workspace @mauriora/keyword-feedback-extension build",
"clean-extension": "yarn workspace @mauriora/keyword-feedback-extension clean",
"serve-webpart": "yarn workspace @mauriora/webpart-keyword-feedback serve",
"build-webpart": "yarn workspace @mauriora/webpart-keyword-feedback build",
"clean-webpart": "yarn workspace @mauriora/webpart-keyword-feedback clean",
"build-shared": "yarn workspace @mauriora/controller-sharepoint-list build && yarn workspace @mauriora/utils-spfx-controls-react build",
"build-all": "yarn build-shared && yarn build-webpart && yarn build-extension",
"clean-shared": "yarn workspace @mauriora/controller-sharepoint-list clean && yarn workspace @mauriora/utils-spfx-controls-react clean",
"clean-all": "yarn clean-shared && yarn clean-webpart && yarn clean-extension",
"clean-node-modules": "lerna clean && rmdir /s node_modules"
},
"devDependencies": {
"lerna": "^4.0.0"
},
"dependencies": {}
}