-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·66 lines (66 loc) · 2.4 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
{
"name": "wip-pos",
"private": true,
"scripts": {
"start": "meteor run --settings settings.json",
"start-prod": "MONGO_URL=$(jq -r '.\"galaxy.meteor.com\".env.MONGO_URL' production-settings.json) MONGO_OPLOG_URL=$(jq -r '.\"galaxy.meteor.com\".env.MONGO_OPLOG_URL' production-settings.json) meteor run --settings production-settings.json",
"dump-prod": "mongodump --uri=\"$(jq '.\"galaxy.meteor.com\".env.MONGO_URL' production-settings.json)\" --out=\"mongodump/$(date '+%Y-%m-%d %H:%M:%S')\"",
"restore-local-from-dump": "mongorestore -h 127.0.0.1 --port 3001 --drop --nsFrom=\"test.*\" --nsTo=\"meteor.*\"",
"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"
},
"dependencies": {
"@babel/runtime": "^7.24.8",
"@emotion/css": "^11.11.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"bcrypt": "^5.1.1",
"convert": "^5.3.0",
"convert-units": "^2.3.4",
"date-fns": "^1.30.1",
"fast-average-color": "^9.4.0",
"history": "^5.3.0",
"jquery": "^3.7.1",
"lodash": "^4.17.21",
"meteor-node-stubs": "^1.2.9",
"polished": "^4.3.1",
"react": "^18.3.1",
"react-countdown": "^2.3.5",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"react-qr-code": "^2.0.15",
"react-responsive-masonry": "^2.2.1",
"react-router": "^6.24.1",
"react-router-dom": "^6.24.1",
"react-select": "^5.8.0",
"react-use-draggable-scroll": "^0.4.7",
"recharts": "^2.12.7",
"simpl-schema": "^3.4.6",
"tdigest": "^0.1.2"
},
"meteor": {
"mainModule": {
"client": "client/main.tsx",
"server": "server/main.ts"
},
"testModule": "tests/main.ts"
},
"devDependencies": {
"@types/fibers": "^3.1.4",
"@types/lodash": "^4.17.6",
"@types/meteor": "^2.9.8",
"@types/mocha": "^10.0.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"typescript": "^5.5.3"
}
}