-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 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
{
"name": "meteor-saas-template",
"private": false,
"scripts": {
"dev": "meteor --exclude-archs web.browser.legacy,web.cordova",
"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",
"npm-latest": "ncu --interactive --format group"
},
"dependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/runtime": "^7.23.7",
"@mantine/core": "^7.4.0",
"@mantine/form": "^7.4.0",
"@mantine/hooks": "^7.4.0",
"@tabler/icons-react": "^2.45.0",
"@tanstack/react-query": "^5.17.7",
"meteor-node-stubs": "^1.2.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.17.7",
"@types/meteor": "^2.9.7",
"@types/mocha": "^8.2.3",
"@types/node": "^20.10.6",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"npm-check-updates": "^16.14.12",
"postcss": "^8.4.33",
"postcss-load-config": "^5.0.2",
"postcss-preset-mantine": "^1.12.3",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.1.1",
"typescript": "^4.9.4"
},
"meteor": {
"mainModule": {
"client": "ui/main.tsx",
"server": "server/main.ts"
},
"testModule": "tests/main.ts"
},
"babel": {
"plugins": [
[
"@babel/plugin-transform-react-jsx",
{
"runtime": "automatic"
}
]
]
}
}