forked from Digiturk/wface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.25 KB
/
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
31
32
33
34
35
{
"name": "wface-workspace",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"child_process": "1.0.2",
"concurrently": "7.0.0",
"fs-extra": "10.0.0",
"gulp": "4.0.2",
"minimist": "1.2.5",
"lerna": "4.0.0"
},
"repository": {
"type": "git",
"url": "https://bitbucket.digiturk.com.tr/scm/itdev/wface.git"
},
"scripts": {
"start": "webpack-dev-server --config=packages/cli/configs/webpack/dev.js --open",
"clean-framework": "rimraf node_modules",
"clean-components": "rimraf ./packages/components/node_modules",
"clean-container": "rimraf ./packages/container/node_modules",
"clean-ioc": "rimraf ./packages/ioc/node_modules",
"clean-store": "rimraf ./packages/store/node_modules",
"clean-system": "rimraf ./packages/system/node_modules",
"clean-cli": "rimraf ./packages/cli/node_modules",
"clean-cefsharp-container": "rimraf ./packages/cefsharp-container/node_modules",
"clean": "npm run clean-framework && npm run clean-components && npm run clean-container && npm run clean-ioc && npm run clean-store && npm run clean-system && npm run clean-cli && npm run clean-cefsharp-container",
"version": "gulp version",
"versions": "gulp versions",
"publish": "gulp publish"
},
"dependencies": {}
}