forked from liferay/clay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.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
{
"private": true,
"scripts": {
"build": "lerna run build && lerna run build:types",
"compile": "lerna run compile",
"checkFormat": "npm run prettier -- --list-different",
"coveralls": "node node_modules/coveralls/bin/coveralls.js < coverage/lcov.info",
"format": "npm run prettier -- --write",
"lerna": "lerna bootstrap -- --no-optional --no-package-lock",
"link": "lerna run link",
"lint": "eslint '**/*.{js,ts,tsx}'",
"prettier": "prettier-eslint '**/*.{js,ts,tsx}'",
"test": "jest",
"site": "cd next.clayui.com && npm run build && npm run serve",
"storybook": "start-storybook -p 8888",
"storybook:build": "build-storybook -c .storybook -o .storybook-static"
},
"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.0.6",
"@storybook/addon-knobs": "^5.0.6",
"@storybook/addon-storysource": "^5.0.6",
"@storybook/react": "^5.0.6",
"@testing-library/jest-dom": "^4.0.1",
"@testing-library/react": "^9.1.3",
"@types/classnames": "^2.2.7",
"@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.0.0",
"@types/storybook__addon-knobs": "^4.0.5",
"@types/storybook__react": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"awesome-typescript-loader": "^5.2.1",
"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": "^5.16.0",
"eslint-config-liferay": "^3.0.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-sort-destructure-keys": "^1.3.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.4.0",
"jest": "^24.1.0",
"jest-fetch-mock": "^2.0.1",
"lerna": "^3.4.0",
"node-sass": "^4.12.0",
"prettier-eslint-cli": "^5.0.0",
"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/*",
"next.clayui.com"
],
"nohoist": [
"gatsby"
]
},
"resolutions": {
"js-beautify": "1.7.5",
"event-stream": "3.3.4"
}
}