-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.02 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.02 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
{
"name": "feu-tech-acm",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn run partytown && next build",
"postbuild": "next-sitemap",
"partytown": "partytown copylib public/~partytown",
"start": "next start",
"lint": "next lint && stylelint \"**/*.css\"",
"prepare": "husky install",
"fontello": "cd public/media/icons && fontello-cli --config fontello-84cd01f8/config.json open",
"fontello-update": "cd public/media/icons && fontello-cli --config fontello-84cd01f8/config.json install",
"killport": "node -e \"const kill = require('kill-port');const p = 3000; setTimeout(() => kill(p, 'tcp').then(console.log('killed 3000'),process.exit(0)).catch(console.log('3000 not killed'),process.exit(0)), 1000)\"",
"removeNext": "node -e \"const fs = require('fs');const p = '.next';try {fs.rmdirSync(p, { recursive: true });} catch (e) {console.warn('Error folder:', p, e);}process.exit(0);\""
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.2",
"@builder.io/partytown": "^0.8.1",
"@prisma/client": "^5.3.1",
"@reduxjs/toolkit": "^1.9.5",
"@types/node": "20.6.2",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@vercel/analytics": "^1.0.2",
"eslint": "8.49.0",
"eslint-config-next": "13.4.19",
"fontello-cli": "^0.6.2",
"framer-motion": "^10.16.4",
"next": "13.4.19",
"next-auth": "^4.23.1",
"next-pwa": "^5.6.0",
"next-redux-wrapper": "^8.1.0",
"next-sitemap": "^4.2.3",
"nodemailer": "^6.9.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.1.2",
"sharp": "^0.32.5",
"typescript": "5.2.2"
},
"main": "next.config.js",
"repository": "git@github.com:FEU-Tech-ACM-Student-Chapter/acm-app.git",
"author": "Alpha Romer Coma <400829150120@r3-1.deped.gov.ph>",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@types/eslint-config-prettier": "^6.11.0",
"@types/next-pwa": "^5.6.4",
"@types/nodemailer": "^6.4.10",
"@types/sharp": "^0.32.0",
"autoprefixer": "^10.4.15",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"kill-port": "^2.0.1",
"lint-staged": "^14.0.1",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"prisma": "^5.3.1",
"react-tsparticles": "^2.12.2",
"stylelint": "^15.10.3",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^13.0.0",
"stylelint-order": "^6.0.3",
"tailwindcss": "^3.3.3",
"tsparticles": "^2.12.0"
},
"stylelint": {
"extends": [
"stylelint-config-recommended",
"stylelint-config-prettier"
],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"apply",
"variants",
"responsive",
"screen"
]
}
],
"declaration-block-trailing-semicolon": null,
"no-descending-specificity": null
},
"ignoreFiles": [
"public/media/icons/**/*"
]
}
}