forked from momentum-design/momentum-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.41 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
{
"name": "momentum-ui",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/collab-ui/momentum-ui.git"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-transform-react-constant-elements": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/exec": "^3.3.2",
"@semantic-release/git": "^7.0.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-polyfill": "6.26.0",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.11.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "7.12.2",
"eslint-watch": "^4.0.2",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"git-url-parse": "^11.1.2",
"lerna": "^3.8.4",
"node-fetch": "^2.3.0",
"npm-run-all": "^4.1.5",
"remark-parse": "^6.0.3",
"rimraf": "^2.6.3",
"semantic-release": "15.6.0",
"semantic-release-monorepo": "^6.1.1",
"stylelint": "^9.9.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-order": "^2.0.0",
"stylelint-scss": "^3.4.4",
"stylelint-selector-bem-pattern": "^2.0.0",
"unified": "^7.1.0",
"yargs": "^12.0.5"
},
"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:core": "cd ./core && yarn build:lib",
"build:icons": "cd ./icons && yarn build",
"build:react": "cd ./react && yarn build:lib",
"ci:publishAll": "run-s ci:publish ci:postPublish",
"ci:publish": "lerna publish --yes",
"ci:postPublish": "run-p postpublish:icons postpublish:core postpublish:react",
"ci:test": "cd ./react && yarn test:CI",
"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:icons": "cd ./icons && yarn lint",
"lint:core": "cd ./core && yarn lint",
"lint:react": "cd ./react && yarn lint",
"postpublish:core": "cd core && yarn ci:postpublish",
"postpublish:icons": "cd icons && yarn ci:postpublish",
"postpublish:react": "cd react && yarn ci:postpublish",
"run:core": "cd ./core && yarn start",
"run:react": "cd ./react && yarn start",
"run:all": "run-p run:core run:react"
},
"workspaces": [
"./core",
"./icons",
"./react"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}