-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
125 lines (125 loc) · 3.63 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "xp-ui",
"version": "2.0.0",
"description": "UI component library for the XP platform.",
"main": "lib/all.js",
"files": [
"lib"
],
"directories": {
"doc": "docs"
},
"scripts": {
"jest": "jest --roots=src",
"start": "start-storybook -p 9001 -c .storybook -s public",
"build": "cross-env NODE_ENV=production webpack --config webpack.standalone.js",
"watch": "npm run build -- --watch",
"flow": "flow check src",
"lint": "standard \"src/**/*.js\" \".jest/**/*.js\" \"jest.config.js\" \"__mocks__/**/*.js\" | snazzy",
"lint-fix": "standard \"src/**/*.js\" \".jest/**/*.js\" \"jest.config.js\" \"__mocks__/**/*.js\" --fix | snazzy",
"test": "npm run lint && npm run flow",
"storybook:build": "build-storybook -c .storybook -o .storybook-static -s public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run build"
}
},
"lint-staged": {
"src/**/*.js": [
"npm run lint-fix",
"npm run lint",
"git add"
],
".jest/**/*.js": [
"npm run lint-fix",
"npm run lint",
"git add"
]
},
"keywords": [],
"author": "joshwnj",
"license": "MIT",
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype",
"react"
]
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-syntax-flow": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"@babel/register": "^7.4.0",
"@babel/standalone": "^7.4.3",
"@storybook/addon-actions": "^5.0.10",
"@storybook/addon-backgrounds": "^5.0.10",
"@storybook/addon-console": "^1.1.0",
"@storybook/addon-info": "^5.0.10",
"@storybook/addon-knobs": "^5.0.10",
"@storybook/addon-notes": "^5.0.10",
"@storybook/react": "^5.0.10",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "^23.4.0",
"babel-loader": "^8.0.0-beta.6",
"babel-plugin-cmz-names": "^1.5.0",
"babel-plugin-require-context-hook": "^1.0.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-react": "^7.11.1",
"faker": "^4.1.0",
"file-loader": "^2.0.0",
"flow-bin": "^0.61.0",
"husky": "^3.1.0",
"jest": "^23.6.0",
"jsdom": "^13.0.0",
"lint-staged": "^9.5.0",
"mockdate": "^2.0.2",
"prop-types": "^15.7.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-dom-factories": "^1.0.2",
"react-select": "1.2.1",
"react-test-renderer": "^16.6.3",
"snazzy": "^8.0.0",
"source-map-loader": "^0.2.4",
"standard": "^12.0.1",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"cmz": "^3.13.0",
"color": "^3.1.0",
"crypto-js": "^3.1.9-1",
"date-fns": "^1.29.0",
"lodash.differenceby": "^4.8.0",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.isnumber": "^3.0.3",
"lodash.throttle": "^4.1.1",
"markdown-to-jsx": "^6.9.4",
"react-avatar": "^3.5.0",
"react-click-outside": "github:tj/react-click-outside",
"react-copy-to-clipboard": "^5.0.1",
"react-data-grid": "^6.1.0",
"react-data-grid-addons": "^6.1.0",
"react-tooltip": "^3.11.1",
"react-transition-group": "^4.3.0",
"react-visibility-sensor": "^5.1.0",
"recompose": "^0.30.0",
"tui-editor": "^1.3.2",
"uuid": "^3.3.2",
"webfontloader": "^1.6.28"
}
}