-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 2.92 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
{
"name": "@magentarian/stats",
"version": "0.0.4",
"repository": "[email protected]:magetarian/stats.git",
"bugs": "https://github.com/magetarian/stats/issues",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Risha Tiwari",
"url": "https://risha.dev"
},
"contributors": [
{
"name": "Milind Singh",
"email": "[email protected]",
"url": "https://adapttive.com/milind"
},
{
"name": "Atish Goswami",
"email": "[email protected]",
"url": "https://magetarian.com"
}
],
"scripts": {
"sitemap": "node src/sitemap.js",
"build": "concurrently \"react-scripts build\" \"npm run sitemap\"",
"ci-check": "yarn format:diff && yarn test",
"clean": "yarn cache clean && yarn install",
"eject": "react-scripts eject",
"format": "prettier --write \"**/*.{js,md,scss}\"",
"format:diff": "prettier --list-different \"**/*.{js,md,scss}\"",
"format:staged": "prettier --write",
"start": "react-scripts start",
"test": "react-scripts test",
"deploy": "rm -rf ./build && yarn build && cf push -f manifest.yml"
},
"dependencies": {
"@carbon/charts": "0.32.12",
"@carbon/charts-react": "0.32.12",
"@carbon/grid": "10.43.1",
"@carbon/icons": "10.48.0",
"@carbon/icons-react": "10.49.0",
"@carbon/themes": "10.55.0",
"apollo-boost": "0.4.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-register": "6.26.0",
"carbon-components": "10.58.1",
"carbon-components-react": "7.59.1",
"carbon-icons": "7.0.7",
"concurrently": "5.2.0",
"d3": "5.14.2",
"graphql": "14.3.1",
"history": "5.0.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-ga": "3.1.1",
"react-router-cache-route": "1.9.0",
"react-router-dom": "5.3.3",
"react-router-sitemap": "1.2.0",
"react-scripts": "2.1.8",
"remove": "0.1.5"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.12.1",
"husky": "^8.0.1",
"lint-staged": "13.0.3",
"node-sass": "^4.14.1",
"prettier": "2.7.1"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": [
"yarn format:staged",
"git add"
],
"*.{scss,css}": [
"yarn format:staged",
"git add"
],
"*.md": [
"yarn format:staged",
"git add"
]
},
"prettier": {
"jsxBracketSameLine": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5"
},
"engines": {
"node": ">=12 <=14"
}
}