-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "simple-todos-react",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"tsr": "tsr watch"
},
"dependencies": {
"@babel/runtime": "^7.23.5",
"@mantine/core": "^7.6.2",
"@mantine/dates": "^7.6.2",
"@mantine/hooks": "^7.6.2",
"@tanstack/react-router": "^1.19.10",
"@tanstack/router-cli": "^1.19.6",
"@tanstack/router-devtools": "^1.19.11",
"@zodern/babel-plugin-meteor-relay": "^1.1.4",
"dayjs": "^1.11.10",
"meteor-node-stubs": "^1.2.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/mocha": "^8.2.3",
"@types/node": "^18.16.5",
"@types/react": "^18.2.5",
"@types/react-dom": "^18.2.4",
"postcss": "^8.4.35",
"postcss-load-config": "^5.0.3",
"postcss-preset-mantine": "^1.13.0",
"postcss-simple-vars": "^7.0.1",
"typescript": "^4.9.5"
},
"meteor": {
"mainModule": {
"client": "client/main.tsx",
"server": "server/main.ts"
},
"testModule": "tests/main.ts"
}
}