|
1 | 1 | { |
2 | | - "name": "rcomponents", |
3 | | - "version": "1.0.0", |
4 | | - "main": "index.js", |
5 | | - "author": "kakuevn", |
6 | | - "license": "MIT", |
7 | | - "scripts": { |
8 | | - "dev": "rollup -c --watch", |
9 | | - "build": "rollup -c", |
10 | | - "start": "npm-run-all --parallel dev test:watch", |
11 | | - "test": "jest", |
12 | | - "test:watch": "jest --watch", |
13 | | - "storybook": "start-storybook -p 6006", |
14 | | - "build-storybook": "build-storybook" |
15 | | - }, |
16 | | - "jest": { |
17 | | - "testURL": "http://localhost/", |
18 | | - "moduleDirectories": [ |
19 | | - "node_modules", |
20 | | - "bower_components", |
21 | | - "shared" |
22 | | - ], |
23 | | - "transformIgnorePatterns": [ |
24 | | - "/node_modules/(?!(our-react-components-.*?\\.js$))" |
25 | | - ], |
26 | | - "moduleNameMapper": { |
27 | | - "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js" |
28 | | - } |
29 | | - }, |
30 | | - "dependencies": { |
31 | | - "react": "^16.5.0", |
32 | | - "react-dom": "^16.5.0", |
33 | | - "styled-components": "^3.4.9" |
34 | | - }, |
35 | | - "devDependencies": { |
36 | | - "@babel/cli": "^7.0.0", |
37 | | - "@babel/core": "^7.0.0", |
38 | | - "@babel/plugin-transform-modules-commonjs": "^7.1.0", |
39 | | - "@babel/preset-env": "^7.0.0", |
40 | | - "@babel/preset-react": "^7.0.0", |
41 | | - "@storybook/addon-actions": "^3.4.11", |
42 | | - "@storybook/addon-links": "^3.4.11", |
43 | | - "@storybook/addons": "^3.4.11", |
44 | | - "@storybook/react": "^3.4.11", |
45 | | - "babel-cli": "^6.26.0", |
46 | | - "babel-eslint": "^10.0.1", |
47 | | - "babel-runtime": "^6.26.0", |
48 | | - "css-loader": "^1.0.0", |
49 | | - "enzyme": "^3.3.0", |
50 | | - "eslint": "^4.17.0", |
51 | | - "eslint-friendly-formatter": "^4.0.1", |
52 | | - "eslint-plugin-flow": "^2.29.1", |
53 | | - "eslint-plugin-flowtype": "^2.42.0", |
54 | | - "eslint-plugin-jsx-a11y": "^6.0.3", |
55 | | - "eslint-plugin-prettier": "^2.6.0", |
56 | | - "eslint-plugin-react": "^7.7.0", |
57 | | - "jest": "^23.6.0", |
58 | | - "node-sass": "^4.9.4", |
59 | | - "npm-run-all": "^4.1.2", |
60 | | - "prettier": "^1.10.2", |
61 | | - "rollup-plugin-babel": "^4.0.3", |
62 | | - "rollup-plugin-eslint": "^5.0.0", |
63 | | - "rollup-plugin-node-resolve": "^3.4.0", |
64 | | - "rollup-plugin-replace": "^2.1.0", |
65 | | - "rollup-plugin-scss": "^0.4.0", |
66 | | - "rollup-watch": "^4.3.1", |
67 | | - "sass-loader": "^7.1.0", |
68 | | - "sinon": "^4.2.2", |
69 | | - "style-loader": "^0.23.1", |
70 | | - "babel-core": "^6.26.3" |
71 | | - } |
| 2 | + "name": "rcomponents", |
| 3 | + "version": "1.0.0", |
| 4 | + "main": "dist/index.js", |
| 5 | + "author": "kakuevn", |
| 6 | + "license": "MIT", |
| 7 | + "scripts": { |
| 8 | + "dev": "rollup -c --watch", |
| 9 | + "build": "rollup -c", |
| 10 | + "start": "npm-run-all --parallel dev test:watch", |
| 11 | + "test": "jest", |
| 12 | + "test:watch": "jest --watch", |
| 13 | + "storybook": "start-storybook -p 6006", |
| 14 | + "build-storybook": "build-storybook" |
| 15 | + }, |
| 16 | + "jest": { |
| 17 | + "testURL": "http://localhost/", |
| 18 | + "moduleDirectories": [ "node_modules", "bower_components", "shared" ], |
| 19 | + "transformIgnorePatterns": [ "/node_modules/(?!(our-react-components-.*?\\.js$))" ], |
| 20 | + "moduleNameMapper": { |
| 21 | + "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js" |
| 22 | + } |
| 23 | + }, |
| 24 | + "dependencies": { |
| 25 | + "react": "^16.5.0", |
| 26 | + "react-dom": "^16.5.0", |
| 27 | + "styled-components": "^3.4.9" |
| 28 | + }, |
| 29 | + "devDependencies": { |
| 30 | + "@babel/cli": "^7.0.0", |
| 31 | + "@babel/core": "^7.0.0", |
| 32 | + "@babel/plugin-transform-modules-commonjs": "^7.1.0", |
| 33 | + "@babel/preset-env": "^7.0.0", |
| 34 | + "@babel/preset-react": "^7.0.0", |
| 35 | + "@storybook/addon-actions": "^3.4.11", |
| 36 | + "@storybook/addon-links": "^3.4.11", |
| 37 | + "@storybook/addons": "^3.4.11", |
| 38 | + "@storybook/react": "^3.4.11", |
| 39 | + "babel-cli": "^6.26.0", |
| 40 | + "babel-eslint": "^10.0.1", |
| 41 | + "babel-runtime": "^6.26.0", |
| 42 | + "css-loader": "^1.0.0", |
| 43 | + "enzyme": "^3.3.0", |
| 44 | + "eslint": "^4.17.0", |
| 45 | + "eslint-friendly-formatter": "^4.0.1", |
| 46 | + "eslint-plugin-flow": "^2.29.1", |
| 47 | + "eslint-plugin-flowtype": "^2.42.0", |
| 48 | + "eslint-plugin-jsx-a11y": "^6.0.3", |
| 49 | + "eslint-plugin-prettier": "^2.6.0", |
| 50 | + "eslint-plugin-react": "^7.7.0", |
| 51 | + "jest": "^23.6.0", |
| 52 | + "node-sass": "^4.9.4", |
| 53 | + "npm-run-all": "^4.1.2", |
| 54 | + "prettier": "^1.10.2", |
| 55 | + "rollup-plugin-babel": "^4.0.3", |
| 56 | + "rollup-plugin-eslint": "^5.0.0", |
| 57 | + "rollup-plugin-node-resolve": "^3.4.0", |
| 58 | + "rollup-plugin-replace": "^2.1.0", |
| 59 | + "rollup-plugin-scss": "^0.4.0", |
| 60 | + "rollup-watch": "^4.3.1", |
| 61 | + "sass-loader": "^7.1.0", |
| 62 | + "sinon": "^4.2.2", |
| 63 | + "style-loader": "^0.23.1", |
| 64 | + "babel-core": "^6.26.3" |
| 65 | + } |
72 | 66 | } |
0 commit comments