-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
91 lines (91 loc) · 2.46 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
{
"name": "mx-react-components",
"version": "8.7.0",
"description": "A collection of generic React UI components",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "babel src --out-dir dist --ignore '**/**/__tests__'",
"release": "npm install && npm run test && rm -rf dist && npm run build",
"dev-release": "npm install && npm run build -- --watch",
"test": "jest && eslint src",
"watch": "jest --watch --coverage=false"
},
"repository": {
"type": "git",
"url": "https://github.com/moneydesktop/mx-react-components"
},
"keywords": [
"react",
"components",
"mx",
"UI",
"library"
],
"author": "MX",
"license": "MIT",
"bugs": {
"url": "https://github.com/moneydesktop/mx-react-components/issues"
},
"homepage": "http://moneydesktop.github.io/mx-react-components/",
"dependencies": {
"@mxenabled/cssinjs": "^0.6.0",
"bowser": "^1.9.4",
"d3": "^3.5.6",
"focus-trap-react": "^3.1.4",
"keycode": "^2.1.8",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"moment-timezone": "^0.5.31",
"numeral": "^2.0.6",
"prop-types": "^15.7.2",
"radium": "^0.19.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"velocity-animate": "^1.5.2"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/plugin-transform-object-assign": "^7.10.1",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^7.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^5.16.0",
"eslint-config-mx": "^1.7.0",
"eslint-config-prettier": "^3.6.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-jest": "^21.27.2",
"eslint-plugin-react": "^7.20.0",
"jest": "^24.9.0",
"jest-enzyme": "^7.1.2"
},
"jest": {
"globals": {
"LOG_LEVEL": "INFO"
},
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
],
"setupFiles": [
"<rootDir>/jest-shim.js",
"<rootDir>/jest-setup.js"
],
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}