This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·67 lines (67 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
65
66
67
{
"name": "@ghost-brigade/ghost-rider",
"version": "0.0.1",
"description": "ghost rider app",
"private": true,
"license": "MIT",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"prepare": "husky install",
"dev": "nodemon & vite",
"build": "vite build",
"lint": "eslint '**/*.{js,mjs}' --fix",
"test": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --passWithNoTests",
"cover": "c8 --reporter html npm test",
"cover:gh": "c8 --reporter=lcov npm test",
"db:migrate": "prisma migrate dev --name init",
"db:seed": "prisma db seed"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"devDependencies": {
"c8": "^7.12.0",
"eslint": "^8.20.0",
"eslint-plugin-eslint-plugin": "^5.0.1",
"eslint-plugin-jest": "^26.7.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-slow-test-reporter": "^1.0.0",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prisma": "^4.9.0",
"sinon": "^14.0.1",
"validate-branch-name": "^1.3.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/vue-fontawesome": "^3.0.2",
"@popperjs/core": "^2.11.6",
"@prisma/client": "^4.7.1",
"@sentry/node": "^7.34.0",
"@sentry/tracing": "^7.34.0",
"@vitejs/plugin-vue": "^3.2.0",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.2.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongoose": "^6.8.0",
"nodemailer": "^6.8.0",
"sass": "^1.56.1",
"socket.io": "^4.5.3",
"socket.io-client": "^4.5.4",
"vite": "^3.2.4",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
}
}