-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.71 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
{
"name": "card-form",
"version": "1.0.0",
"description": "Credit card form | TS | React",
"engines": {
"npm": ">=5",
"node": ">=8.15.1"
},
"author": "Eugene R.",
"license": "MIT",
"scripts": {
"prebuild": "npm run build:clean",
"build": "webpack --config internals/webpack/webpack.prod.js --color -p --progress --hide-modules --display-optimization-bailout",
"build:clean": "rimraf ./build",
"start": "webpack-dev-server --config internals/webpack/webpack.dev.js --color",
"lint:eslint": "eslint --ext .js,.jsx,.ts,.tsx app/",
"lint:eslint:fix": "npm run lint:eslint --fix",
"lint:staged": "lint-staged"
},
"browserslist": [
"last 2 versions",
"> 1%",
"IE 10"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint:eslint:fix"
]
},
"pre-commit": "lint:staged",
"dependencies": {
"prop-types": "^15.7.2",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-input-mask": "^2.0.4",
"sanitize.css": "11.0.0",
"styled-components": "4.4.1"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-react-constant-elements": "7.6.3",
"@babel/plugin-transform-react-inline-elements": "7.2.0",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "7.7.0",
"@babel/preset-typescript": "7.7.2",
"@types/prop-types": "^15.7.3",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.4",
"@types/react-input-mask": "^2.0.4",
"@types/styled-components": "4.1.22",
"@types/webpack-env": "1.14.1",
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"babel-loader": "8.0.6",
"circular-dependency-plugin": "5.2.0",
"compression-webpack-plugin": "3.0.0",
"css-loader": "3.2.0",
"eslint": "6.6.0",
"eslint-config-airbnb-typescript": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.2.0",
"file-loader": "4.2.0",
"html-webpack-plugin": "3.2.0",
"lint-staged": "^9.4.2",
"pre-commit": "^1.2.2",
"react-app-polyfill": "1.0.4",
"rimraf": "3.0.0",
"style-loader": "1.0.0",
"stylelint": "11.1.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.8.0",
"svg-sprite-loader": "^4.1.6",
"svgo": "^1.3.1",
"svgo-loader": "^2.2.1",
"tsconfig-paths-webpack-plugin": "3.2.0",
"typescript": "3.7.2",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0"
}
}