-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 1.83 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
{
"name": "contactful",
"version": "1.0.0",
"private": true,
"dependencies": {
"@trpc/server": "^9.5.0",
"deta": "^1.0.0",
"express": "^4.17.1",
"zod": "^3.8.1"
},
"devDependencies": {
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.0",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^14.2.0",
"@trpc/client": "^9.5.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.0",
"@types/node": "^12.0.0",
"@types/papaparse": "^5.3.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"concurrently": "^6.2.1",
"dotenv": "^10.0.0",
"guid-ts": "^1.1.1",
"immer": "^9.0.6",
"nodemon": "^2.0.12",
"papaparse": "^5.3.2",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^14.2.2",
"react-scripts": "^5.0.0",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1",
"zustand": "^3.5.10"
},
"scripts": {
"start": "concurrently npm:build:micro:watch npm:start:micro npm:start:react",
"start:micro": "nodemon local.js",
"start:react": "react-scripts start",
"build": "yarn build:micro && yarn build:react",
"build:micro": "tsc -p server/",
"build:micro:watch": "tsc -p server/ --watch",
"build:react": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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"
]
},
"proxy": "http://localhost:4000/",
"resolutions": {
"@svgr/webpack": "^6.0.0"
},
"packageManager": "[email protected]"
}