-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.47 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
{
"name": "@b12/metronome",
"version": "1.1.21",
"description": "",
"main": "index.es6.js",
"scripts": {
"test": "jest",
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"prettier": "prettier --ignore-path .prettierignore --config .prettierrc.json --ignore-unknown --write",
"lint-fix": "eslint --config .eslintrc.js --fix"
},
"author": "B12 <[email protected]> (https://b12.io/)",
"license": "Apache-2.0",
"engines": {
"npm": ">=3.0.0"
},
"jest": {
"collectCoverage": false,
"coverageDirectory": "<rootDir>/coverage_report",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/.test.es6.js$/",
"/jest/",
"/third_party/"
],
"testMatch": [
"**/__tests__/**/*.es6.js",
"**/?(*.)test.es6.js"
],
"setupFiles": [
"<rootDir>/jest/shim.es6.js",
"<rootDir>/jest/setup.es6.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/jest/mock/file.js",
"\\.(css|scss)$": "<rootDir>/jest/mock/style.js"
}
},
"devDependencies": {
"@babel/cli": "7.2.0",
"@babel/core": "7.2.0",
"@babel/node": "7.2.0",
"@babel/plugin-proposal-class-properties": "7.2.1",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"@babel/runtime": "7.2.0",
"@uirouter/react": "0.6.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.1.0",
"babel-loader": "8.0.4",
"babel-plugin-istanbul": "4.0.0",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-transform-builtin-extend": "1.1.2",
"clean-webpack-plugin": "0.1.19",
"css-loader": "0.28.11",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.10.0",
"eslint": "4.19.1",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-react": "7.8.2",
"eslint-plugin-standard": "3.1.0",
"faker": "4.1.0",
"file-loader": "1.1.11",
"html-webpack-plugin": "3.2.0",
"jest": "24.1.0",
"node-sass": "4.13.1",
"popper.js": "1.14.3",
"prettier": "2.7.1",
"prop-types": "15.6.2",
"react": "16.8.0",
"react-dom": "16.8.0",
"react-styleguidist": "10.6.1",
"react-syntax-highlighter": "7.0.4",
"react-test-renderer": "16.3.2",
"sass-loader": "7.0.1",
"style-loader": "0.21.0",
"uuid": "3.2.1",
"webpack": "4.6.0",
"webpack-cli": "2.0.15",
"webpack-dev-server": "3.1.3"
},
"dependencies": {
"bootstrap": "4.6.1",
"classnames": "2.2.5",
"css-box-model": "0.0.13",
"lodash": "4.17.11",
"moment": "2.22.1",
"react-beautiful-dnd": "2.6.2",
"react-color": "2.13.1",
"react-datepicker": "1.7.0",
"react-dropzone": "4.2.1",
"reactstrap": "5.0.0",
"tlds": "1.199.0",
"union-class-names": "1.0.0"
},
"peerDependencies": {
"react": "16.8.0"
}
}