forked from liferay/clay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.53 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
{
"private": true,
"scripts": {
"build": "lerna run build && lerna run build:types",
"build:csb": "lerna run --no-bail --ignore \"clayui.com\" build && lerna run --no-bail --ignore \"clayui.com\" build:types",
"checkDeps": "lerna run --ignore \"clayui.com\" build && node scripts/check-deps/check-dependencies.js",
"checkSize": "lerna run --ignore \"clayui.com\" build && NODE_ENV=production node scripts/check-size/index.js",
"checkSize:compare": "lerna run --ignore \"clayui.com\" build && NODE_ENV=production node scripts/check-size/index.js --compare",
"ci": "yarn lint && yarn format:check && yarn test && yarn checkDeps",
"coveralls": "node node_modules/coveralls/bin/coveralls.js < coverage/lcov.info",
"format:all": "yarn lint:fix && yarn format",
"lerna": "lerna bootstrap -- --no-optional --no-package-lock",
"format": "prettier --write -- \"**/*.{js,ts,tsx,md,mdx,json}\"",
"format:changed": "git ls-files -mz \"**/*.js\" \"**/*.ts\" \"**/*.tsx\" \"**/*.md\" \"**/*.mdx\" \"**/*.json\" | xargs -0 prettier --write --",
"format:check": "prettier --list-different -- \"**/*.{js,ts,tsx,md,mdx,json}\"",
"lint": "eslint \".*.js\" \"**/*.{js,ts,tsx}\"",
"lint:changed": "git ls-files -mz \"**/*.js\" \"**/*.ts\" \"**/*.tsx\" | xargs -0 eslint",
"lint:fix": "eslint --fix \".*.js\" \"**/*.{js,ts,tsx}\"",
"lint:quiet": "eslint --quiet \".*.js\" \"**/*.{js,ts,tsx}\"",
"test": "jest",
"site": "cd next.clayui.com && yarn build && yarn serve",
"storybook": "start-storybook -p 8888",
"storybook:build": "build-storybook -c .storybook -o .storybook-static",
"version": "yarn run format:all"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@storybook/addon-a11y": "^5.3.12",
"@storybook/addon-knobs": "^5.3.12",
"@storybook/addon-storysource": "^5.3.12",
"@storybook/react": "^5.3.12",
"@testing-library/jest-dom": "^4.0.1",
"@testing-library/react": "^9.1.3",
"@types/classnames": "^2.2.7",
"@types/d3": "^5.7.2",
"@types/fast-json-stable-stringify": "^2.0.0",
"@types/geojson": "^7946.0.7",
"@types/jest": "^24.0.13",
"@types/lru-cache": "^5.1.0",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@types/react-test-renderer": "^16.8.0",
"@types/storybook__addon-a11y": "5.1.2",
"@types/storybook__addon-knobs": "^5.2.1",
"@types/storybook__react": "^5.2.1",
"@types/tinycolor2": "^1.4.1",
"@types/warning": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"babel-loader": "^7.0.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"coveralls": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^6.8.0",
"eslint-config-liferay": "19.0.2",
"fork-ts-checker-webpack-plugin": "^4.0.3",
"jest": "^24.1.0",
"jest-fetch-mock": "^2.0.1",
"lerna": "^3.4.0",
"ncp": "^2.0.0",
"node-sass": "^4.12.0",
"parcel-bundler": "^1.12.4",
"prettier": "^1.16.4",
"raf": "^3.4.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.6.1",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
},
"workspaces": {
"packages": [
"packages/*",
"clayui.com"
],
"nohoist": [
"gatsby"
]
},
"resolutions": {
"js-beautify": "1.7.5",
"event-stream": "3.3.4"
}
}