-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.json
53 lines (53 loc) · 1.59 KB
/
template.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
{
"package": {
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.2",
"@mui/styles": "^5.9.2",
"@tst-labs/basilar": "^0.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-docs": "^6.5.10",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-viewport": "^6.5.10",
"@storybook/addon-storysource": "^6.5.10",
"@storybook/addons": "^6.5.10",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.10",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.3.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"dotenv": "^8.2.0"
},
"scripts": {
"prestart": "node app-env-gen.js",
"prebuild": "node app-env-gen.js",
"test:ci": "CI=true yarn test",
"lint": "eslint './src/**/*.{js,jsx}'",
"fix": "yarn lint --fix",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix"
}
}
}