-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
86 lines (86 loc) · 2.73 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": "sigmaker",
"version": "1.0.0",
"private": true,
"license": "MIT",
"homepage": "https://sigmaker.app",
"repository": {
"type": "git",
"url": "https://github.com/Burry/Sigmaker.git"
},
"author": "Grant Burry <[email protected]> (https://grantburry.com)",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "react-scripts build",
"deploy": "cat CNAME > ./build/CNAME && gh-pages -d build",
"test": "react-scripts test",
"analyze": "react-scripts build --stats && webpack-bundle-analyzer build/bundle-stats.json -m static -r build/bundle-stats.html -O",
"eject": "react-scripts eject",
"precommit": "lint-staged"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"lint-staged": {
"ignore": [
"package.json",
"**/**/*.test.js"
],
"linters": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix --rule 'import/no-extraneous-dependencies: off'",
"git add --force"
],
"*.{json,md}": [
"prettier --write",
"git add --force"
],
"*.{css,less,scss,sass,sss,styl}": [
"stylelint --fix",
"git add --force"
]
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-brands-svg-icons": "^5.7.2",
"@fortawesome/pro-solid-svg-icons": "^5.7.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"awesome-phonenumber": "^2.5.0",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"gravatar": "^1.8.0",
"node-sass": "^4.11.0",
"rc-color-picker": "^1.2.6",
"react": "^16.8.3",
"react-bootstrap": "^1.0.0-beta.5",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.3",
"react-helmet": "^5.2.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.5"
},
"devDependencies": {
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-prettier": "^3.0.1",
"gh-pages": "^2.0.1",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.0.0",
"stylelint-scss": "^3.5.4",
"webpack-bundle-analyzer": "^3.0.4"
}
}