-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.48 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
{
"name": "ventesa",
"main": "src/main.js",
"version": "0.1.0",
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "CI=true react-scripts test --env=jsdom"
}
},
"dependencies": {
"@chakra-ui/core": "0.8.0",
"@emotion/core": "10.1.1",
"@emotion/styled": "10.0.27",
"electron": "15.5.5",
"electron-is-dev": "^2.0.0",
"electron-reload": "^2.0.0-alpha.1",
"emotion-theming": "10.0.27",
"formik": "2.2.9",
"immer": "9.0.6",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"react-spring": "8.0.27",
"styled-components": "5.3.0",
"tinycolor2": "1.4.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@storybook/addon-actions": "6.3.6",
"@storybook/addon-docs": "6.3.6",
"@storybook/addon-knobs": "6.3.0",
"@storybook/addon-links": "6.3.6",
"@storybook/addon-storysource": "6.3.6",
"@storybook/addons": "6.3.6",
"@storybook/preset-create-react-app": "3.2.0",
"@storybook/react": "6.3.6",
"@storybook/theming": "6.3.6",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@testing-library/user-event": "13.2.1",
"concurrently": "5.2.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-prettier": "3.4.0",
"husky": "4.3.8",
"lint-staged": "10.5.4"
},
"scripts": {
"start": "concurrently -n react,electron,storybook \"npm run react\" \"npm run electron\" \"npm run storybook\"",
"build": "react-scripts build",
"test": "react-scripts test",
"react": "(export BROWSER=none || set BROWSER=none && react-scripts start)",
"electron": "electron .",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"push-storybook": "git subtree push --prefix storybook-static/ origin gh-pages",
"clean-storybook": "rm -rf storybook-static",
"publish-storybook": "npm run build-storybook && npm run push-storybook && npm run clean-storybook",
"lint": "eslint --fix ."
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.jsx": [
"eslint --fix"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}