-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.13 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": "react-thumb-up",
"version": "0.1.1",
"description": "A simple react thumb-up animated component, with customizable props, to like with confidence",
"main": "dist/ThumbUp/index.js",
"homepage": "https://madeinmoon.github.io/react-thumb-up/",
"repository": {
"type": "git",
"url": "git://github.com/MadeInMoon/react-thumb-up.git"
},
"author": {
"name": "Max in Moon",
"email": "[email protected]",
"url": "https://www.madeinmoon.io"
},
"scripts": {
"transpile": "babel src -d dist --copy-files",
"doc": "react-docgen ./src/ThumbUp/ThumbUp.js -o ./doc/ThumbUp.json -e ./src/ThumbUp/index.js | ./doc/react-docgen/buildDocs.sh",
"prepublishOnly": "npm run transpile"
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"react": "^16.6.3"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "9.0.0",
"babel-jest": "23.6.0",
"babel-loader": "8.0.4",
"babel-preset-es2015": "^6.24.1",
"classnames": "^2.2.6",
"css-loader": "1.0.0",
"eslint": "5.6.0",
"eslint-config-react-app": "^3.0.5",
"eslint-loader": "2.1.1",
"eslint-plugin-flowtype": "2.50.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"flow-bin": "^0.86.0",
"jest": "23.6.0",
"mini-css-extract-plugin": "0.4.3",
"node-sass": "^4.10.0",
"path": "^0.12.7",
"react-docgen": "3.0.0-rc.2",
"sass-loader": "7.1.0",
"style-loader": "0.23.0",
"webpack-cli": "^3.1.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts"
],
"resolver": "jest-pnp-resolver",
"setupFiles": [
"react-app-polyfill/jsdom"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,ts,tsx}"
],
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|ts|tsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"ts",
"web.tsx",
"tsx",
"json",
"web.jsx",
"jsx",
"node"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-flow",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}