-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.44 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": "kitten",
"version": "0.1.1",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"@hookform/resolvers": "^1.0.1",
"@supabase/supabase-js": "^1.0.7",
"@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/lodash-es": "^4.17.3",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/uuid": "^8.3.0",
"@types/yup": "^0.29.9",
"autoprefixer": "^10.0.4",
"clean-css-cli": "^4.3.0",
"fp-ts": "^2.9.0",
"lodash-es": "^4.17.15",
"lodash.merge": "^4.6.2",
"luxon": "^1.25.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.1.10",
"postcss-cli": "^8.3.0",
"postcss-import": "^13.0.0",
"postcss-nested": "^5.0.1",
"r-maple": "^0.4.0",
"r-orchid": "^0.5.1",
"r-reactive-store": "^0.3.1",
"r-use-observable": "^1.0.1",
"r-use-value-observable": "^1.0.0",
"r-value-observable": "^0.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.11.5",
"react-scripts": "4.0.1",
"rxjs": "^6.6.3",
"sass": "^1.29.0",
"tailwindcss": "^2.0.1",
"typescript": "^4.0.3",
"uuid": "^8.3.1",
"web-vitals": "^0.2.4",
"yup": "^0.31.0"
},
"scripts": {
"start": "run-p start:css start:web",
"start:css": "postcss src/components.css --output public/components.out.css --watch",
"start:web": "react-scripts start",
"build": "run-s build:css build:web",
"build:css": "postcss src/components.css --output public/components.out.css",
"build:web": "react-scripts build",
"postbuild": "purgecss --config purgecss.config.js && cleancss -o build/components.out.css build/components.out.css",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --fix --ext js,jsx,ts,tsx src"
},
"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"
]
},
"devDependencies": {
"@types/luxon": "^1.25.0"
}
}