This repository has been archived by the owner on Feb 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·82 lines (82 loc) · 2.32 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
{
"name": "bm-kit",
"version": "1.4.4",
"description": "BoilerMake UI Library",
"main": "./dist/index.js",
"scripts": {
"build": "webpack --config webpack.config.babel.js",
"clean": "rm -rf dist",
"test": "npm run lint && npm run coverage",
"coverage": "jest --coverage",
"lint": "eslint ./src",
"build-examples": "webpack --config examples/webpack.config.babel.js --progress",
"start": "webpack-dev-server --config examples/webpack.config.live.babel.js",
"prepublish": "npm run clean && npm run test && npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.10",
"prop-types": "^15.6.0",
"react": "^16.0.0"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-jest": "^23.0.0",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.9.0",
"eslint-plugin-react": "^7.4.0",
"jest": "^23.0.0",
"node-sass": "^4.7.2",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^16.0.0",
"react-hot-loader": "next",
"react-test-renderer": "^16.0.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4",
"@storybook/react": "^3.4.8",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addons": "^3.4.8",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0"
},
"jest": {
"modulePaths": [
"./src"
],
"moduleFileExtensions": [
"js",
"jsx",
"scss"
],
"setupFiles": [
"<rootDir>/config/jest/setup.js"
],
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"coverageReporters": [
"json",
"lcov",
"text-summary"
],
"testURL": "http://localhost"
}
}