forked from momentum-design/momentum-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 4.24 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "momentum-ui",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/momentum-design/momentum-ui.git"
},
"scripts": {
"bootstrap": "lerna bootstrap && lerna link",
"bootstrap:clean": "run-s clean bootstrap",
"build": "yarn build:all",
"build:all": "run-s build:icons build:core build:react build:angular build:angularjs build:vue build:charts",
"build:angular": "cd ./angular && yarn build:lib",
"build:angularjs": "cd ./angularjs && yarn build:lib",
"build:core": "cd ./core && yarn build:lib",
"build:charts": "cd ./charts && yarn build:lib",
"build:icons": "cd ./icons && yarn build:lib",
"build:react": "cd ./react && yarn build:lib",
"build:utils": "cd ./utils && yarn build:lib",
"build:vue": "cd ./vue && yarn build:lib",
"build:data": "rimraf ./data && node ./tools/generateComponentsData.js",
"serve:core": "cd ./core && yarn open:dist",
"ci:publish": "yarn release",
"ci:test": "run-s ci:test:icons ci:test:core ci:test:react ci:test:angular ci:test:vue ci:test:charts",
"ci:test:core": "cd ./core && yarn test",
"ci:test:core:percy": "cd ./core && yarn test:percy",
"ci:test:icons": "cd ./icons && yarn test",
"ci:test:react": "cd ./react && yarn test:CI",
"ci:test:react:percy": "cd ./react && yarn test:percy",
"ci:test:angular": "cd ./angular && yarn test:CI",
"ci:test:angularjs:percy": "cd ./angularjs && yarn test:percy",
"ci:test:percy": "run-s ci:test:icons ci:test:core:percy ci:test:react ci:test:angular",
"ci:test:vue": "cd ./vue && yarn test:CI",
"ci:test:charts": "cd ./charts && yarn test:CI",
"ci:test:www": "cd ./www && yarn test:CI",
"cypress:verify": "cypress verify",
"clean": "rimraf node_modules/ **/node_modules/",
"commit": "npx git-cz",
"data": "run-s build:data data:pushToDB",
"data:pushToDB": "node ./tools/postComponentsToDB.js",
"lint:all": "run-p lint:icons lint:core lint:react lint:angular lint:vue",
"lint:angular": "cd ./angular && yarn lint",
"lint:icons": "cd ./icons && yarn lint",
"lint:core": "cd ./core && yarn lint",
"lint:react": "cd ./react && yarn lint",
"lint:vue": "cd ./vue && yarn lint",
"lint:charts": "cd ./charts && yarn lint",
"publish:www": "node ./tools/publishWebsite.js",
"release": "./tools/release.sh",
"start:all": "run-p start:core start:angular start:react start:vue",
"start:angular": "cd ./angular && yarn start",
"start:core": "cd ./core && yarn start",
"start:react": "cd ./react && yarn start",
"start:vue": "cd ./vue && yarn start",
"start:charts": "cd ./charts && yarn start",
"test:all": "run-p test:angular test:react",
"test:react": "cd ./react && yarn test",
"test:angular": "cd ./angular && yarn test",
"test:angularjs": "cd ./angularjs && yarn test:unit",
"test:vue": "cd ./vue && yarn test",
"test:www": "cd ./www && yarn test:unit",
"test:charts": "cd ./charts && yarn test",
"postinstall": "rimraf angular/src/lib/node_modules/rxjs && yarn build:utils"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/exec": "^3.3.2",
"@semantic-release/git": "^7.0.7",
"aws-sdk": "^2.538.0",
"cypress": "^3.4.1",
"git-url-parse": "^11.1.2",
"lerna": "^3.13.1",
"mime": "^2.4.4",
"npm-run-all": "^4.1.5",
"remark-parse": "^6.0.3",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.24",
"semantic-release-monorepo": "^6.1.1",
"unified": "^7.1.0",
"webex": "^1.80.1",
"yarn": "^1.16.0"
},
"workspaces": {
"packages": [
"./angular",
"./angular/src/lib",
"./angularjs",
"./core",
"./charts",
"./icons",
"./react",
"./utils",
"./vue",
"./web-components",
"./www"
],
"nohoist": [
"**/@angular/**",
"**/@angular-devkit/**",
"**/@types/**",
"**/@percy/**",
"**/angular/**",
"**/awesome-typescript-loader",
"**/html-loader",
"**/jest/**",
"**/jest",
"**/jest-preset-angular",
"**/ng-annotate-loader",
"**/moment*",
"**/webpack-cli/**"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}