-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.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
{
"name": "lemming",
"version": "0.0.2",
"repository": "https://github.com/IBM/lemming",
"bugs": "https://github.com/IBM/lemming/issues",
"license": "Apache License 2.0",
"scripts": {
"build": "react-scripts build",
"clean": "yarn cache clean && yarn install",
"format": "prettier --write \"**/*.{js,md,scss}\"",
"start": "react-scripts start",
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@carbon/react": "^1.31.3",
"react": "^18.1.0",
"react-autosuggest": "^10.0.2",
"react-device-detect": "2.1.2",
"react-dom": "^18.1.0",
"react-router-dom": "^5.0.0",
"react-scripts": "^5.0.1",
"reagraph": "4.8.2",
"sass": "^1.51.0",
"string-similarity-js": "^2.1.4"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"react-github-btn": "1.2.1"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"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"
}
}