-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.97 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.97 KB
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
{
"name": "unity-design-system",
"homepage": "https://clarityhub.github.io/unity-design-system",
"private": true,
"version": "1.0.0-monorepo",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"lerna-clean": "lerna clean -y",
"lint": "lerna exec --parallel 'eslint src'",
"lint:fix": "lerna exec --parallel 'eslint src --fix'",
"build": "lerna exec --parallel 'babel src --out-dir lib'",
"emails:watch": "lerna exec --scope=@clarityhub/unity-email 'babel examples --out-dir lib/examples --watch'",
"emails:run": "lerna exec --scope=@clarityhub/unity-email 'nodemon ./lib/examples/build.js --watch ./lib'",
"clean": "lerna exec --parallel 'rimraf lib'",
"docz:dev": "docz dev",
"docz:build": "docz build",
"test": "lerna exec --parallel 'jest --ci --passWithNoTests'",
"test:watch": "lerna exec 'jest --watch'",
"test:coverage": "lerna exec 'jest --passWithNoTests --coverage'",
"prerelease": "npm run lint && npm run test && npm run clean && npm run build",
"release": "lerna publish",
"predeploy": "npm run docz:build",
"deploy": "node ./scripts/deploy"
},
"dependencies": {
"@clarityhub/unity-core": "file:packages/unity-core",
"@clarityhub/unity-email": "file:packages/unity-email",
"@clarityhub/unity-web": "file:packages/unity-web",
"gh-pages": "^2.0.1"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-destructuring": "^7.3.2",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@emotion/core": "^10.0.7",
"@emotion/styled": "^10.0.7",
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^4.9.1",
"@mdi/js": "^5.3.45",
"@mdi/react": "^1.4.0",
"acorn": "^6.1.1",
"acorn-dynamic-import": "^4.0.0",
"acorn-jsx": "^5.0.1",
"babel-eslint": "^10.0.1",
"babel-plugin-emotion": "^10.0.7",
"docz": "^0.13.7",
"docz-plugin-css": "^0.11.0",
"docz-theme-default": "^0.13.7",
"emotion": "^10.0.27",
"eslint": "^5.15.1",
"eslint-config-clarity-hub": "^2.0.2",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-emotion": "^10.0.7",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"formik": "^1.5.1",
"jest": "^26.1.0",
"jest-emotion": "^10.0.32",
"lerna": "^2.9.0",
"nodemon": "^1.18.10",
"path-to-regexp": "^1.7.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-hash-link": "^1.2.1",
"react-test-renderer": "^16.13.1",
"rimraf": "^2.6.3",
"typescript": "^3.3.3333",
"webpack": "4.28.4"
}
}