-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.12 KB
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
{
"name": "finagram-react",
"author": "Alexey Stratan",
"version": "0.0.1",
"private": true,
"homepage": "https://lehos.github.io/finagram-react",
"scripts": {
"dev": "webpack-dev-server --hot",
"build": "yarn clean && webpack --mode=production",
"clean": "rimraf build",
"format": "cross-env prettier --write './src/**/*.{ts,tsx}'",
"lint": "yarn lint:js",
"lint:js": "eslint './src/**/*.{ts,tsx}'",
"ts": "tsc",
"bundle-analyzer": "cross-env NODE_ENV=production BUNDLE_ANALYZER=localhost webpack",
"up": "yarn upgrade-interactive",
"predeploy": "cross-env HISTORY_HASH=true ASSET_PATH=/finagram-react/ yarn build",
"deploy": "gh-pages -d build --remote github",
"test": "jest",
"ui": "start-storybook -p 9001"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn ts"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint",
"prettier --write",
"git add"
]
},
"dependencies": {
"@emotion/core": "10.0.22",
"@emotion/styled": "10.0.23",
"@storybook/react": "5.2.5",
"antd": "3.25.0",
"fast-memoize": "2.5.1",
"final-form": "4.18.5",
"history": "4.10.1",
"moment": "^2.24.0",
"moment-locales-webpack-plugin": "1.1.0",
"nanoid": "2.1.6",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-easy-state": "6.1.3",
"react-final-form": "6.3.0",
"react-hot-loader": "4.12.15",
"react-imask": "^5.2.1",
"react-router-dom": "5.1.2"
},
"devDependencies": {
"@babel/cli": "7.7.0",
"@babel/core": "7.7.0",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "7.7.0",
"@babel/preset-typescript": "7.7.0",
"@hot-loader/react-dom": "16.10.2",
"@storybook/addon-storysource": "5.2.5",
"@svgr/webpack": "4.3.3",
"@types/jest": "24.0.22",
"@types/nanoid": "2.1.0",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.3",
"@types/react-router-dom": "5.1.2",
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"babel-loader": "8.0.6",
"babel-plugin-emotion": "^10.0.23",
"babel-plugin-import": "1.12.2",
"core-js": "3.3.6",
"cross-env": "6.0.3",
"css-loader": "3.2.0",
"eslint": "6.6.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"file-loader": "4.2.0",
"gh-pages": "2.1.1",
"html-webpack-plugin": "3.2.0",
"husky": "3.0.9",
"jest": "24.9.0",
"lint-staged": "9.4.2",
"mini-css-extract-plugin": "0.8.0",
"npm-check": "5.9.0",
"prettier": "1.18.2",
"prop-types": "15.7.2",
"rimraf": "3.0.0",
"source-map-loader": "0.2.4",
"style-loader": "1.0.0",
"ts-jest": "24.1.0",
"typescript": "3.7.2",
"webpack": "4.41.2",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0"
}
}