-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "meteor-foodflow",
"private": true,
"engineStrict": true,
"engines": {
"npm": "10.x",
"node": "20.x"
},
"scripts": {
"start": "meteor run",
"test": "meteor test --driver-package meteortesting:mocha",
"test:ci": "meteor test --once --driver-package meteortesting:mocha",
"dev": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha --port 3003",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"@headlessui/react": "^1.7.7",
"@heroicons/react": "^2.0.13",
"@tailwindcss/forms": "^0.5.3",
"autoprefixer": "^10.4.13",
"bcrypt": "^5.1.0",
"classnames": "^2.3.2",
"cssnano": "^5.1.14",
"enzyme": "^3.11.0",
"luxon": "^3.3.0",
"meteor-node-stubs": "^1.2.1",
"postcss": "^8.4.21",
"postcss-load-config": "^4.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.43.3",
"react-router-dom": "^6.6.2",
"simpl-schema": "^3.4.1",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"@types/enzyme": "^3.10.12",
"@types/luxon": "^3.3.0",
"@types/meteor": "^1.4.87",
"@types/mocha": "^8.2.3",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"babel-eslint": "^10.1.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-meteor": "^7.3.0",
"eslint-plugin-react": "^7.32.0",
"typescript": "^4.6.4"
},
"meteor": {
"mainModule": {
"client": "client/main.tsx",
"server": "server/main.ts"
}
}
}