-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.92 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.92 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.7",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/picomatch": "^2.3.0",
"cross-env": "^7.0.3",
"vite": "^5.4.14"
},
"optionalDependencies": {
"cypress": "^12.17.4",
"netlify-cli": "^24.0.1"
},
"scripts": {
"build": "yarn run build:backend && yarn run build:frontend",
"build:backend": "yarn run build:netlify",
"build:frontend": "vite build --config ./vite.config.ts",
"build:netlify": "webpack --config ./webpack.netlify.functions.js",
"ci:local": "bash ./scripts/ci-local.sh",
"fix": "eslint . --fix && prettier . --write",
"lint": "eslint .",
"posttest": "rimraf ./globalConfig.json",
"prebuild": "rimraf ./functions && rimraf ./dist/js && mkdir -p ./dist/js",
"start:db": "sudo systemctl start mongod",
"start:backend": "yarn run build:backend && netlify functions:serve --functions functions --port 9999",
"start:frontend": "yarn run build:frontend && vite preview --config ./vite.config.ts --host 0.0.0.0 --port 5000",
"start": "concurrently \"yarn run start:backend\" \"yarn run start:frontend\" --kill-others",
"dev:frontend": "vite dev --config ./vite.config.ts --host 0.0.0.0 --port 5173",
"dev": "concurrently \"yarn run watch:backend\" \"NODE_ENV=development NODE_OPTIONS=\\\"--max-old-space-size=4096\\\" netlify dev\" --kill-others",
"test": "yarn test:backend && yarn test:frontend",
"test:backend": "jest --config jest.backend.config.ts",
"test:cypress": "cypress run",
"test:frontend": "cross-env TZ=UTC jest --config jest.frontend.config.ts",
"typecheck": "tsc --noEmit -p tsconfig.frontend.json && tsc --noEmit -p tsconfig.netlify.functions.json",
"watch:backend": "webpack --config ./webpack.netlify.functions.js --watch",
"watch:frontend": "vite build --config ./vite.config.ts --watch",
"watch:lint": "esw -w ./src/**/*.ts --color --clear --changed",
"watch:test": "jest --watch --noStackTrace"
},
"dependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@netlify/functions": "^1.0.0",
"@sendgrid/mail": "^8.1.6",
"@tsconfig/svelte": "^5.0.0",
"@types/aws-lambda": "^8.10.95",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@xstate/cli": "^0.5.1",
"@xstate/svelte": "^2.1.0",
"@xstate/test": "^1.0.0-alpha.1",
"babel-jest": "^29.6.1",
"bcryptjs": "^2.4.3",
"carbon-icons-svelte": "^12.0.0",
"concurrently": "^7.1.0",
"dotenv": "^16.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.32.4",
"eslint-watch": "^8.0.0",
"http-server": "^14.1.0",
"jest": "29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-environment-node": "^29.7.0",
"jsonwebtoken": "^9.0.3",
"merge": "^2.1.1",
"mongodb": "^5.8.0",
"mongodb-memory-server": "^8.5.1",
"normalize-url": "^8.0.0",
"picomatch": "^2.3.1",
"prando": "^6.0.1",
"prettier": "2.6.2",
"prettier-plugin-svelte": "^2.10.1",
"rimraf": "^3.0.2",
"sass": "^1.63.6",
"svelte": "^4.2.20",
"svelte-preprocess": "^5.0.4",
"ts-jest": "^29.1.1",
"ts-loader": "^9.3.0",
"ts-node": "^10.1.0",
"typescript": "^5.3.2",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^4.9.2",
"webpack-license-plugin": "^4.2.2",
"xstate": "^4.38.1",
"yarn": "^1.22.18"
},
"resolutions": {
"@cypress/request": "^3.0.0",
"async": ">2.6.4 || ^2.6.4",
"glob-parent": ">6.0.2 || ^6.0.2"
},
"documentation": {
"resolutions": {
"@cypress/request": "Resolved to version 3.0.0 to address security vulnerability. q.v. https://github.com/advisories/GHSA-p8p7-x288-28g6"
}
}
}