This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.88 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
{
"name": "todotxt-ui",
"version": "0.1.0",
"private": true,
"proxy": "http://127.0.0.1:3000",
"dependencies": {
"@craco/craco": "^6.4.3",
"@sentry/react": "^6.16.1",
"@sentry/tracing": "^6.16.1",
"@tailwindcss/postcss7-compat": "^2.1.4",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.180",
"@types/luxon": "^2.3.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^17.0.21",
"@types/query-string": "^6.3.0",
"@types/react": "^17.0.41",
"@types/react-dom": "^17.0.14",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^9",
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"luxon": "^2.3.1",
"markdown-it": "^12.3.2",
"postcss": "^7",
"query-string": "^7.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.2.3",
"react-query": "^3.34.16",
"react-router-dom": "^6.2.2",
"react-scripts": "4.0.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"tributejs": "https://github.com/bobwhitelock/tribute.git#works-for-me",
"typescript": "^4.6.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "cd client && PORT=3001 craco start",
"build": "mkdir -p public && cd client && craco build && cp -r build/* ../public/",
"test": "cd client && craco test",
"eject": "cd client && react-scripts eject",
"prettier": "prettier . --write"
},
"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": {
"prettier": "^2.6.0"
}
}