-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.2 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
{
"name": "@theconversation/ui",
"version": "2.44.0",
"description": "A collection of React components used to build our apps at The Conversation",
"homepage": "https://github.com/conversation/ui",
"author": "The Conversation <[email protected]>",
"license": "MIT",
"keywords": [
"theconversation",
"react",
"component",
"ui"
],
"main": "dist/cjs",
"module": "dist/esm",
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "babel --delete-dir-on-start --copy-files --out-dir dist/cjs src",
"build:esm": "babel --delete-dir-on-start --copy-files --env-name esm --out-dir dist/esm src",
"test": "jest",
"lint": "standard"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/conversation/ui.git"
},
"dependencies": {
"@material-ui/core": "4.10.1",
"@material-ui/icons": "4.2.1",
"@material-ui/lab": "4.0.0-alpha.30",
"@material-ui/pickers": "3.2.2",
"@material-ui/styles": "4.5.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "7.5.5",
"@date-io/moment": "^1.0.2",
"@storybook/addon-actions": "^5.0.5",
"@storybook/addon-knobs": "^5.0.5",
"@storybook/react": "^5.0.5",
"babel-eslint": "^10.0.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"jest": "^24.1.0",
"moment": "^2.24.0",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"standard": "^12.0.1",
"storybook-readme": "^4.0.5",
"typeface-libre-baskerville": "0.0.72",
"typeface-montserrat": "0.0.54",
"typeface-noto-sans": "0.0.72"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"typeface-libre-baskerville": "0.0.54",
"typeface-montserrat": "0.0.54",
"typeface-noto-sans": "0.0.54"
},
"publishConfig": {
"access": "public"
},
"standard": {
"env": "jest",
"parser": "babel-eslint"
},
"sideEffects": false
}