-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.61 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
116
117
118
{
"version": "0.1.0",
"homepage": "https://papasnowee.github.io/harvest-landing-page/",
"scripts": {
"dev": "webpack-dev-server --port 3000 --mode development --open --hot",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"prettier": "prettier --write .",
"lint": "./node_modules/.bin/eslint src/**/*.{js,ts,tsx} --fix --max-warnings 0 --no-error-on-unmatched-pattern"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run prettier"
]
},
"dependencies": {
"@emotion/core": "10.0.28",
"@emotion/styled": "10.0.27",
"@types/uuid": "8.3.1",
"axios": "0.21.2",
"dotenv-webpack": "^8.1.0",
"gh-pages": "^6.1.1",
"react": "16.13.1",
"react-app-polyfill": "1.0.6",
"react-dom": "16.13.1",
"react-loadable": "5.5.0",
"react-modal-resizable-draggable": "0.1.4",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.15.0",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-decorators": "7.14.5",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.15.0",
"@emotion/babel-plugin": "11.3.0",
"@emotion/jest": "11.3.0",
"@svgr/webpack": "4.3.3",
"@types/enzyme": "3.10.9",
"@types/graphql": "14.5.0",
"@types/jest": "26.0.24",
"@types/react": "17.0.19",
"@types/react-dom": "17.0.9",
"@types/react-router": "5.1.16",
"@types/react-router-dom": "5.1.8",
"@types/storybook__addon-actions": "5.2.1",
"@types/storybook__addon-info": "5.2.4",
"@types/styled-components": "5.1.13",
"@typescript-eslint/eslint-plugin": "4.30.0",
"@typescript-eslint/parser": "4.30.0",
"babel-eslint": "10.1.0",
"babel-jest": "27.0.2",
"babel-loader": "8.1.0",
"babel-plugin-named-asset-import": "0.3.7",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"copy-webpack-plugin": "6.4.1",
"css-loader": "3.4.2",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "7.32.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.25.1",
"eslint-plugin-standard": "4.1.0",
"file-loader": "4.3.0",
"html-webpack-plugin": "4.0.0-beta.11",
"husky": "7.0.2",
"image-webpack-loader": "7.0.1",
"jest": "27.0.3",
"jest-emotion": "11.0.0",
"jest-environment-jsdom-fourteen": "1.0.1",
"jest-resolve": "24.9.0",
"jest-watch-typeahead": "0.4.2",
"lint-staged": "10.5.4",
"lodash.sortby": "4.7.0",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.14.1",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"postcss-normalize": "8.0.1",
"postcss-preset-env": "6.7.0",
"postcss-safe-parser": "4.0.1",
"prettier": "2.3.2",
"react-docgen-typescript": "^2.1.0",
"sass-loader": "8.0.2",
"style-loader": "0.23.1",
"styled-bootstrap-grid": "3.1.1",
"styled-components": "5.3.1",
"styled-reset": "4.3.4",
"ts-node": "8.10.2",
"typescript": "4.2.4",
"webpack": "4.46.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.2"
},
"engines": {
"node": "12.x",
"npm": "6.x"
},
"browser": {
"fs": false
}
}