forked from momentum-design/momentum-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.66 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
{
"name": "momentum-ui",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/collab-ui/collab-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:angular": "cd ./angular && yarn build:lib",
"build:angularjs": "cd ./angularjs && yarn build",
"build:core": "cd ./core && yarn build:lib",
"build:icons": "cd ./icons && yarn build",
"build:react": "cd ./react && yarn build:lib",
"build:sinks": "cd ./core && yarn build:app",
"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: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:angular": "cd ./angular && yarn test:CI",
"ci:test:percy": "run-s ci:test:icons ci:test:core:percy ci:test:react",
"cypress:verify": "cypress verify",
"clean": "rimraf node_modules/ **/node_modules/",
"commit": "npx git-cz",
"data:all": "run-s data:core data:react",
"data:core": "cd ./core && yarn build:data",
"data:react": "cd ./react && yarn build:data",
"lint:all": "run-p lint:icons lint:core lint:react lint:angular",
"lint:angular": "cd ./angular && yarn lint",
"lint:icons": "cd ./icons && yarn lint",
"lint:core": "cd ./core && yarn lint",
"lint:react": "cd ./react && yarn lint",
"release": "./tools/release.sh",
"start:all": "run-p start:core start:angular start:react",
"start:angular": "cd ./angular && yarn start",
"start:core": "cd ./core && yarn start",
"start:react": "cd ./react && 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",
"postinstall": "rimraf angular/src/lib/node_modules/rxjs"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/exec": "^3.3.2",
"@semantic-release/git": "^7.0.7",
"babel-eslint": "^10.0.1",
"cypress": "^3.1.5",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-cypress": "^2.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "7.12.2",
"eslint-watch": "^4.0.2",
"eslint": "^5.11.1",
"git-url-parse": "^11.1.2",
"lerna": "^3.13.1",
"npm-run-all": "^4.1.5",
"remark-parse": "^6.0.3",
"rimraf": "^2.6.3",
"semantic-release-monorepo": "^6.1.1",
"semantic-release": "15.6.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-order": "^2.0.0",
"stylelint-scss": "^3.4.4",
"stylelint-selector-bem-pattern": "^2.0.0",
"stylelint": "^9.9.0",
"tslint": "~5.11.0",
"unified": "^7.1.0",
"yarn": "^1.12.1"
},
"workspaces": {
"packages": [
"./angular",
"./angular/src/lib",
"./angularjs",
"./core",
"./icons",
"./react",
"./utils",
"./www"
],
"nohoist": [
"**/@angular/**",
"**/@angular-devkit",
"**/@types/**",
"**/angular/**",
"**/awesome-typescript-loader",
"**/html-loader",
"**/jest-preset-angular",
"**/ng-annotate-loader",
"**/moment*"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}