-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.34 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
{
"name": "zuffik.eu",
"version": "0.1.0",
"private": true,
"homepage": "./",
"dependencies": {
"@material-ui/core": "4.11.3",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.5",
"@testing-library/user-event": "12.8.3",
"@types/jest": "26.0.20",
"@types/node": "14.14.35",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.2",
"classnames": "2.2.6",
"husky": "4.2.3",
"lint-staged": "10.5.4",
"lodash": "4.17.21",
"mdi-material-ui": "6.22.0",
"moment": "2.29.1",
"prettier": "2.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-intl": "5.13.3",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"typescript": "4.2.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"compress:images": "node ./scripts/compress-images.js",
"i18n:extract": "formatjs extract 'src/**/!(react-app-env.d.ts)*.{ts,tsx}' --out-file lang/en.json",
"i18n:compile": "formatjs compile lang/en.json --ast --out-file src/modules/i18n/locales/en.json"
},
"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"
]
},
"devDependencies": {
"@formatjs/cli": "3.2.0",
"@storybook/addon-actions": "6.1.21",
"@storybook/addon-knobs": "6.1.21",
"@storybook/addon-links": "6.1.21",
"@storybook/addons": "6.1.21",
"@storybook/preset-create-react-app": "3.1.7",
"@storybook/react": "6.1.21",
"@types/classnames": "2.2.11",
"@types/lodash": "4.14.168",
"@types/react-intl": "3.0.0",
"@types/react-router": "5.1.12",
"@types/react-router-dom": "5.1.7",
"babel-plugin-formatjs": "9.2.5",
"glob": "7.1.6",
"node-fetch": "2.6.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"./node_modules/prettier/bin-prettier.js --write",
"./node_modules/eslint/bin/eslint.js"
]
}
}