-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 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
{
"name": "@fashiontrade/patchwork",
"version": "0.0.1",
"main": "dist/index.js",
"files": [
"dist"
],
"peerDependencies": {
"prop-types": ">=15.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@fashiontrade/eslint-config-ft-react-app": "^0.5.0",
"@fashiontrade/ft-react-scripts": "0.7.0",
"eslint-plugin-prettier": "2.6.2",
"prettier": "1.17.0",
"prop-types": "15.6.2",
"react": ">=16.8.6",
"react-dom": ">=16.8.6",
"webpack-cli": "3.3.1",
"webpack-node-externals": "1.7.2"
},
"scripts": {
"start": "react-scripts start",
"prepublishOnly": "yarn lint && yarn build",
"build": "rm -rf dist && NODE_ENV=production webpack --mode=production --config webpack.production.config.js",
"lint-staged": "lint-staged",
"lint": "eslint src"
},
"pre-commit": [
"lint-staged",
"lint"
],
"lint-staged": {
"*.{js,scss,md}": [
"prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}