-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
93 lines (93 loc) · 2.35 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
{
"name": "graphql-devtools",
"version": "0.0.5",
"private": true,
"dependencies": {
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@stitches/react": "^1.2.1",
"@tippyjs/react": "^4.2.0",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@xstate/react": "^1.0.2",
"classnames": "^2.2.6",
"fast-memoize": "^2.5.2",
"graphql": "^15.4.0",
"graphql.js": "^0.6.6",
"lodash.debounce": "^4.0.8",
"object-path-immutable": "^4.1.1",
"prettier": "^2.1.2",
"prismjs": "^1.22.0",
"ramda": "^0.27.1",
"react": "^17.0.1",
"react-dark-mode-toggle": "^0.0.10",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.0",
"rxjs": "^6.6.3",
"typescript": "^4.0.5",
"xstate": "^4.14.0"
},
"scripts": {
"start": "./scripts/watch.js",
"build": "SKIP_PREFLIGHT_CHECK=true INLINE_RUNTIME_CHUNK=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --fix",
"prettier --write"
],
"*.{css}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@commitlint/config-conventional": "^11.0.0",
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-links": "^6.0.28",
"@storybook/addons": "^6.0.28",
"@storybook/react": "^6.0.28",
"@types/lodash.debounce": "^4.0.6",
"@types/prettier": "^2.1.5",
"@types/prismjs": "^1.16.2",
"babel-loader": "^8.1.0",
"commitlint": "^11.0.0",
"cz-conventional-changelog": "3.3.0",
"husky": ">=4",
"lint-staged": ">=10",
"webpack-extension-reloader": "^1.1.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}