-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.53 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.53 KB
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
{
"name": "app2022.johnnydecimal.com",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^6.1.0",
"@reach/router": "^1.3.4",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@xstate/react": "^1.2.2",
"autoprefixer": "^9",
"chokidar-cli": "^2.1.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"postcss": "^7",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.14.2",
"react-scripts": "4.0.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"typeface-fira-code": "^1.1.13",
"typeface-fira-sans": "^1.1.13",
"typescript": "^4.0.3",
"userbase-js": "^2.7.3",
"vh-check": "^2.0.5",
"web-vitals": "^0.2.4",
"xstate": "^4.16.0"
},
"scripts": {
"_thanks_dave_ceddia": "https://daveceddia.com/tailwind-create-react-app/#production",
"build:tailwind": "tailwind build src/index.css -o src/tailwind.output.css",
"watch:tailwind": "chokidar 'src/**/*.css' 'src/**/*.scss' --ignore src/tailwind.output.css -c 'npm run build:tailwind'",
"start": "npm-run-all build:tailwind --parallel watch:tailwind start:craco",
"prebuild": "run-s build:tailwind",
"start:craco": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"clean": "rm -Rf node_modules && yarn",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@storybook/addon-actions": "^6.1.17",
"@storybook/addon-essentials": "^6.1.17",
"@storybook/addon-links": "^6.1.17",
"@storybook/react": "^6.1.17",
"@types/reach__router": "^1.3.7",
"babel-loader": "^8.2.2",
"eslint-config-prettier": "^7.2.0"
}
}